Skip to main content
GET
/
company-data
/
list
Get All Companies
curl --request GET \
  --url https://www.api.baselink.tech/company-data/list \
  --header 'bearer: <api-key>'
{
  "companies": [
    {}
  ],
  "companies[].id": "<string>",
  "companies[].name": "<string>",
  "companies[].userCount": 123,
  "companies[].teamCount": 123,
  "companies[].createdAt": "<string>"
}
Retrieve a list of all companies in the system.
companies
array
Array of company objects.
companies[].id
string
The unique identifier of the company.
companies[].name
string
The name of the company.
companies[].userCount
number
The number of users in the company.
companies[].teamCount
number
The number of teams in the company.
companies[].createdAt
string
The creation timestamp of the company.