GET
/
corporations
curl --request GET \
  --url https://base_url/api/v1/corporations \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "corporations": [
      {
        "id": "2535af08-a139-4d0c-9827-1651e46dfbcf",
        "legal_name": "Commenda Technologies Pvt. Ltd.",
        "created_at": 1727284490
      }
    ],
    "cursor": "<string>",
    "total_corporations": 123
  },
  "message": "Successfully fetched corporations."
}

Authorizations

Authorization
string
header
required

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

Query Parameters

cursor
string

Cursor for pagination

limit
integer
default:
10

Number of items to return per page

Required range: 1 <= x <= 100

Response

200
application/json
Get all corporations response.
data
object
message
string
Example:

"Successfully fetched corporations."