---
title: "Listar clientes"
method: GET
path: "/api/v1/customers"
tags: ["API"]
---

# Listar clientes

`GET /api/v1/customers`

Devuelve clientes de la organización. Permite buscar por nombre, CUIT o email.

## Query parameters

- `cursor` string
- `limit` integer
- `query` string
- `search` string
- `is_active` boolean
- `status` ApiSharedEnumd952d5ce8e[]

## Response `200`

Clientes obtenidos exitosamente

- ApiCustomerListResponse
  - `request_id` string, required
  - `data` object[], required
    - `object` 'customer', required
    - `id` string, uuid, required
    - `name` string, required
    - `company_name` string, nullable, required
    - `description` string, nullable, required
    - `email` string, nullable, required
    - `phone` string, nullable, required
    - `address` string, nullable, required
    - `apartment` string, nullable, required
    - `city` string, nullable, required
    - `delivery_carrier` string, nullable, required
    - `delivery_address` string, nullable, required
    - `tax_id` string, nullable, required
    - `tax_id_type` string, nullable, required
    - `tax_category` string, nullable, required
    - `contact_type` string, nullable, required
    - `default_price_list_id` string, uuid, nullable, required
    - `payment_term_id` string, nullable, required
    - `payment_term_days` integer, nullable, required — Cantidad de días hasta el vencimiento. Usá 0 para Contado. Se prefiere sobre paymentTermId.
    - `province_id` string, nullable, required
    - `is_active` boolean, nullable, required
    - `created_at` string, date-time, required
    - `updated_at` string, date-time, required
  - `has_more` boolean, required
  - `next_cursor` string, nullable, required
  - `object` 'list', required — List-envelope discriminator.
  - `url` string, required — Requested list path.

## Other responses

- `400` — Parámetros inválidos
- `401` — API key faltante o inválida
- `403` — Scopes insuficientes
- `429` — Límite de solicitudes excedido para la organización
- `500` — Error interno del servidor

---

[API](https://skmtc.net/lapyme/apis/la-pyme-api.md) · [All operations](https://skmtc.net/lapyme/apis/la-pyme-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/lapyme/la-pyme-api/versions/414f57f28498/schema)
