Skip to main content
GET
/
api
/
v3
/
companies
List companies
curl --request GET \
  --url https://paradigm.lighton.ai/api/v3/companies \
  --header 'Authorization: Bearer <token>'
{
  "count": 123,
  "results": [
    "<unknown>"
  ],
  "next": "http://api.example.org/accounts/?page=4",
  "previous": "http://api.example.org/accounts/?page=2"
}

Authorizations

Authorization
string
header
required

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

Query Parameters

page
integer

Page number (default: 1)

Filter by company name (case-insensitive)

Response

count
integer
required
Example:

123

results
any[]
required

List of companies with pagination

next
string<uri> | null
Example:

"http://api.example.org/accounts/?page=4"

previous
string<uri> | null
Example:

"http://api.example.org/accounts/?page=2"