Skip to main content
GET
/
entities
Get all entities
curl --request GET \
  --url https://api.sandbox.monite.com/v1/entities \
  --header 'Authorization: Bearer <token>' \
  --header 'x-monite-version: <x-monite-version>'
{
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "address": {
        "city": "<string>",
        "country": "AF",
        "line1": "<string>",
        "postal_code": "<string>",
        "line2": "<string>",
        "state": "<string>"
      },
      "organization": {
        "legal_name": "<string>",
        "business_structure": "incorporated_partnership",
        "directors_provided": true,
        "executives_provided": true,
        "legal_entity_id": "<string>",
        "owners_provided": true,
        "representative_provided": true
      },
      "status": "active",
      "type": "<string>",
      "email": "<string>",
      "logo": {
        "id": "753fbb53-2347-4f47-9bbe-21c9b68b81a1",
        "created_at": "2025-03-11T13:13:24.841010Z",
        "file_type": "entity-logo",
        "name": "logo.png",
        "region": "eu-central-1",
        "md5": "07098e3581e0d599c15121f5634ea124",
        "mimetype": "image/png",
        "url": "https://bucketname.amazonaws.com/path/to/logo-image.png",
        "size": 63643,
        "previews": [],
        "pages": []
      },
      "phone": "<string>",
      "registration_authority": "Amtsgericht Charlottenburg",
      "registration_number": "HRB 202324",
      "tax_id": "<string>",
      "website": "<string>"
    }
  ],
  "next_pagination_token": "<string>",
  "prev_pagination_token": "<string>"
}

Authorizations

Authorization
string
header
required

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

Headers

x-monite-version
string<date>
required

Query Parameters

order
enum<string>
default:asc

Sort order (ascending by default). Typically used together with the sort parameter.

Available options:
asc,
desc
limit
integer
default:100

The number of items (0 .. 100) to return in a single page of the response. The response may contain fewer items if it is the last or only page.

Required range: 1 <= x <= 100
pagination_token
string | null

A pagination token obtained from a previous call to this endpoint. Use it to get the next or previous page of results for your initial query. If pagination_token is specified, all other query parameters are ignored and inferred from the initial query.

If not specified, the first page of results will be returned.

sort
enum<string> | null

The field to sort the results by. Typically used together with the order parameter.

Available options:
created_at,
updated_at
type
enum<string> | null
Available options:
individual,
organization
created_at__gt
string<date-time> | null
created_at__lt
string<date-time> | null
created_at__gte
string<date-time> | null
created_at__lte
string<date-time> | null
id__in
string<uuid>[] | null
id__not_in
string<uuid>[] | null
email
string | null
email__in
string[] | null
email__not_in
string[] | null
status
enum<string> | null
Available options:
active,
inactive

Response

Successful Response

data
object[]
required

A set of entities of different types returned per page

A schema for a response after creation of an entity of different types

next_pagination_token
string | null

A token that can be sent in the pagination_token query parameter to get the next page of results, or null if there is no next page (i.e. you've reached the last page).

prev_pagination_token
string | null

A token that can be sent in the pagination_token query parameter to get the previous page of results, or null if there is no previous page (i.e. you've reached the first page).