Entities are not checked for existing duplicate Entities.
Body
The type of the Entity. Must be
corporation
Corporation information of the Entity.
Show properties
Show properties
The legal name of the corporation Entity.
DBA (Doing Business As) name of the corporation Entity.
The EIN of the corporation Entity.
The details of the corporation's owners (only include individuals owning 25% or more of the corporation).
Show properties
Show properties
The legal first name of the corporation owner.
The legal last name of the corporation owner.
Mobile phone number of the corporation owner in E.164 format. The number will only be used for KYC / AML verification.
Email address of the corporation owner. The email will only be used for KYC / AML verification.
The corporation owner's date of birth in ISO 8601 format.
The corporation owner's address.
Show properties
Show properties
The first line of the corporation owner's address.
The second line of the corporation owner's address.
The city of the corporation owner's address.
The two-letter abbreviation for the state of the corporation owner's address.
The ZIP code of the corporation owner's address.
The Entity's address.
Show properties
Show properties
The first line of the Entity's address.
The second line of the Entity's address.
The city of the Entity's address.
The two-letter abbreviation for the state of the Entity's address.
The ZIP code of the Entity's address.
Returns
Returns the Entity associated with the ID.Copy
Ask AI
curl https://production.methodfi.com/entities \
-X POST \
-H "Method-Version: 2025-07-04" \
-H "Authorization: Bearer sk_WyZEWVfTcH7GqmPzUPk65Vjc" \
-H "Content-Type: application/json" \
-d '{
"type": "corporation",
"corporation": {
"name": "Alphabet Inc.",
"dba": "Google",
"ein": "641234567",
"owners": [
{
"first_name": "Sergey",
"last_name": "Brin",
"phone": "+16505555555",
"email": "sergey@google.com",
"dob": "1973-08-21",
"address": {
"line1": "600 Amphitheatre Parkway",
"line2": null,
"city": "Mountain View",
"state": "CA",
"zip": "94043"
}
}
]
},
"address": {
"line1": "1600 Amphitheatre Parkway",
"line2": null,
"city": "Mountain View",
"state": "CA",
"zip": "94043"
}
}'
Copy
Ask AI
{
"id": "ent_A6bmTtFmxQhGQ",
"type": "corporation",
"corporation": {
"name": "Alphabet Inc.",
"dba": "Google",
"ein": "641234567",
"owners": [
{
"first_name": "Sergey",
"last_name": "Brin",
"phone": "+16505555555",
"email": "sergey@google.com",
"dob": "1973-08-21",
"address": {
"line1": "600 Amphitheatre Parkway",
"line2": null,
"city": "Mountain View",
"state": "CA",
"zip": "94043"
}
}
]
},
"error": null,
"address": {
"line1": "1600 Amphitheatre Parkway",
"line2": null,
"city": "Mountain View",
"state": "CA",
"zip": "94043"
},
"status": "active",
"metadata": null,
"created_at": "2023-10-24T21:26:17.225Z",
"updated_at": "2023-10-24T21:26:17.225Z"
}