---
title: "List Customers"
method: GET
path: "/api/v1.4/customers/"
tags: ["v1.1"]
---

# List Customers

`GET /api/v1.4/customers/`

List all customers

## Query parameters

- `is_live` boolean
- `limit` integer
- `offset` integer

## Response `200`

- PaginatedCustomerList
  - `count` integer
  - `next` string, uri, nullable
  - `previous` string, uri, nullable
  - `results` Customer[]
    - `id` string, required — A unique customer identifier, identifier is V4 UUID
    - `type` 'INDIVIDUAL' | 'COMPANY' — * `INDIVIDUAL` - Individual * `COMPANY` - Company
    - `name` string, nullable
    - `first_name` string, nullable — Customer First Name
    - `last_name` string, nullable — Customer Last Name
    - `email` string, email, nullable — Customer Email
    - `phone_number` string, nullable — Customer Phone Number
    - `description` string, nullable
    - `custom_fields` unknown
    - `company_name` string, nullable — If the customer is a company, this field is required
    - `tax_id` integer, nullable — Customer Tax ID
    - `tax_rate` integer, nullable — Customer Tax Rate
    - `address` string, nullable — Customer Address
    - `national_id` string, nullable — Customer National ID
    - `contact_person_name` string, nullable — If the customer is a company, this field is required
    - `birth_date` string, date, nullable — Customer Birth Date
    - `wallets` object, required
    - `uuid` string, uuid — A unique customer identifier, identifier is V4 UUID
    - `last_used_payment_method` string, nullable
    - `last_used_method` string, required

## Other responses

- `400`
- `401`

---

[API](https://skmtc.net/moneyhash/apis/moneyhash-api.md) · [All operations](https://skmtc.net/moneyhash/apis/moneyhash-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/moneyhash/moneyhash-api/revisions/111e4c2e0826/schema)
