GET
/
api
/
v1
/
companies
List Companies
curl --request GET \
  --url https://worker.anon.com/api/v1/companies \
  --header 'Authorization: Bearer <token>'
{
  "results": [
    {
      "object": "company",
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "created": "2023-11-07T05:31:56Z",
      "provider_company_name": "<string>",
      "provider_company_id": "<string>",
      "organization_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "source_provider": "<string>"
    }
  ],
  "page": {
    "size": 123,
    "total": 123
  }
}

Authorizations

Authorization
string
header
required

Bearer token authentication

Query Parameters

page
number
default:1

Page number for pagination (starts at 1)

Required range: x >= 1
page_size
number
default:30

Number of companies per page (max 100)

Required range: 1 <= x <= 100

Response

200
application/json

Success

The response is of type object.