Skip to main content
GET
/
corporations
/
{id}
curl --request GET \
  --url 'https://transaction-tax.api.in.commenda.io/api/v1/corporations/corp_123abc' \
  --header 'Authorization: Bearer <token>'
{
  "message": "Corporation retrieved successfully.",
  "data": {
    "id": "corp_123abc",
    "legal_name": "Acme Corporation Inc.",
    "created_at": 1704067200,
    "jurisdiction": "US",
    "email_alias": "acme@filings.commenda.io"
  }
}
Retrieves the details of a specific corporation by its unique identifier.
id
string
required
Unique identifier of the corporation to retrieve.
id
string
required
Unique identifier for the corporation.
Legal name of the entity, including the type suffix.
created_at
integer
required
Unix timestamp of when the corporation was created.
jurisdiction
string
required
Jurisdiction of the corporation.
email_alias
string
Email alias for the corporation.
curl --request GET \
  --url 'https://transaction-tax.api.in.commenda.io/api/v1/corporations/corp_123abc' \
  --header 'Authorization: Bearer <token>'
{
  "message": "Corporation retrieved successfully.",
  "data": {
    "id": "corp_123abc",
    "legal_name": "Acme Corporation Inc.",
    "created_at": 1704067200,
    "jurisdiction": "US",
    "email_alias": "acme@filings.commenda.io"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

The unique identifier of the corporation to fetch.

Response

Get one corporation response.

data
object

A corporation registered with Commenda.

message
string
Example:

"Successfully fetched corporation."