Corporations
Get corporation
Retrieve a corporation by its ID.
GET
/
corporations
/
{id}
Copy
curl --request GET \
--url http://staging.api.commenda.io/api/v1/corporations/{id} \
--header 'Authorization: Bearer <token>'
Copy
{
"id": "<string>",
"legalName": "Initech Pvt. Ltd.",
"registeredAddress": {
"line1": "<string>",
"line2": "<string>",
"city": "<string>",
"state": "<string>",
"postalCode": "<string>",
"country": "US"
},
"formationCountry": "US",
"uniqueIdentifierFromJurisdiction": "1234567",
"taxId": "12-3456789",
"countrySpecificInfo": {
"US": {
"formationState": "DE",
"entityType": "CCorp",
"EIN": "10-1234567"
},
"IN": {
"formationState": "KA",
"entityType": "PvtLtd",
"PAN": "AAAPA1234A"
},
"CorporationDocuments": [
{
"type": "ArticlesOfAssociation",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
]
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
The unique identifier of the corporation to retrieve.
Response
200
application/json
A single corporation
The response is of type object
.
Was this page helpful?
Copy
curl --request GET \
--url http://staging.api.commenda.io/api/v1/corporations/{id} \
--header 'Authorization: Bearer <token>'
Copy
{
"id": "<string>",
"legalName": "Initech Pvt. Ltd.",
"registeredAddress": {
"line1": "<string>",
"line2": "<string>",
"city": "<string>",
"state": "<string>",
"postalCode": "<string>",
"country": "US"
},
"formationCountry": "US",
"uniqueIdentifierFromJurisdiction": "1234567",
"taxId": "12-3456789",
"countrySpecificInfo": {
"US": {
"formationState": "DE",
"entityType": "CCorp",
"EIN": "10-1234567"
},
"IN": {
"formationState": "KA",
"entityType": "PvtLtd",
"PAN": "AAAPA1234A"
},
"CorporationDocuments": [
{
"type": "ArticlesOfAssociation",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
]
}
}
Assistant
Responses are generated using AI and may contain mistakes.