Skip to main content
GET
/
companies
/
statuses
List company statuses
curl --request GET \
  --url https://app.leonar.app/api/v1/companies/statuses \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "name": "Customer",
      "color": "#22c55e",
      "position": 1,
      "is_default": false,
      "created_at": "2026-03-27T10:00:00Z"
    }
  ],
  "meta": {
    "total": 142,
    "limit": 50,
    "offset": 0,
    "has_more": true
  }
}

Authorizations

Authorization
string
header
required

API key starting with leo_

Response

List of company statuses

data
object[]
meta
object
Example:
{
"total": 142,
"limit": 50,
"offset": 0,
"has_more": true
}