Skip to main content
GET
/
company
Retrieve company
curl --request GET \
  --url https://app.finta.com/api/v1/company \
  --header 'Authorization: Bearer <token>'
{ "id": "comp_a1b2c3d4e5f6g7", "object": "company", "name": "Acme Corp", "legal_name": "Acme Corp Inc.", "entity_type": "c_corp", "federal_ein_last4": "6789", "delaware_file_number": "1234567", "incorporation": { "date": "2022-10-21", "state": "DE" }, "legal_address": { "line_1": "548 Market Street", "line_2": "PMB 39381", "city": "San Francisco", "state": "CA", "postal_code": "94104", "country": "US" }, "created": 1688053841 }

Documentation Index

Fetch the complete documentation index at: https://www.finta.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key prefixed with finta_

Response

The company object

id
string
required

Unique identifier with comp_ prefix.

Example:

"comp_a1b2c3d4e5f6g7"

object
enum<string>
required
Available options:
company
name
string
required

The company's preferred display name.

Example:

"Acme Corp"

created
integer
required

Unix timestamp of when the company was created.

Example:

1737000000

The company's legal name.

Example:

"Acme Corp Inc."

entity_type
enum<string> | null

Legal entity type. Closed enum: c_corp (C corporation), pbc (public benefit corporation), llc (limited liability company), s_corp (S corporation), other (any other legal structure the company self-identified). Returns null when the company has not yet completed the onboarding step that captures legal structure. New values may be added over time as the onboarding questionnaire grows; consumers should treat unrecognized values defensively.

Available options:
c_corp,
pbc,
llc,
s_corp,
other
Example:

"c_corp"

federal_ein_last4
string | null

Last 4 digits of the company's Federal Employer Identification Number. The full EIN is not exposed via the API.

Example:

"6789"

delaware_file_number
string | null

Delaware file number, if applicable.

incorporation
object