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": "12-3456789",
  "delaware_file_number": "1234567",
  "incorporation": {
    "date": "2022-10-21",
    "state": "delaware"
  },
  "legal_address": {
    "line_1": "548 Market Street",
    "line_2": "PMB 39381",
    "city": "San Francisco",
    "state": "california",
    "postal_code": "94104",
    "country": "United States"
  },
  "created": 1688053841
}

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
string | null

Legal entity type (e.g. c_corp, s_corp, llc).

Example:

"c_corp"

federal_ein
string | null

Federal Employer Identification Number.

Example:

"12-3456789"

delaware_file_number
string | null

Delaware file number, if applicable.

incorporation
object