Skip to content

Suggested

API Dashboard
GET /identities

Lists identities with optional filters and pagination.

GET/identities
Get Identities

Bearer access token returned by the authentication endpoint.

The API key used for authentication when making requests to the API Gateway.

API version selector for Conomy endpoints. Use 24-04-2025 for the current version.

Identifies the application making the request.

Filters identities by type (USER or ORGANIZATION).

USERORGANIZATION

identity email

identity document number

identity phone number

Filters identities by country code.

identity status

Specifies the maximum number of items to return in a single request.

A cursor indicating the position of the last retrieved item.

dataobject[]required

An array containing the list of retrieved identities based on the provided pagination parameters.

paginationobjectrequired

An object containing pagination metadata that helps navigate through the dataset.

Request
GET /sandbox/identities HTTP/1.1
Host: api.conomyhq.com
Authorization: Bearer {ACCESS_TOKEN}
x-api-key: {YOUR_API_KEY}
conomyhq-api-version: 24-04-2025
User-Agent: MyApp/1.0
Response
{
  "data": [
    {}
  ],
  "pagination": {
    "pagination": {
      "count": 0,
      "next": 0,
      "previous": 0,
      "total": 0
    },
    "results": [
      {}
    ]
  }
}