> ## Documentation Index
> Fetch the complete documentation index at: https://docs.valorapayments.com.br/llms.txt
> Use this file to discover all available pages before exploring further.

# Buscar Cliente



## OpenAPI

````yaml GET /v1/customers
openapi: 3.1.0
info:
  title: Valora Payment Gateway
  description: >-
    Gateway de pagamentos brasileiro com suporte a PIX e cripto (USDT/USDC/EURC
    na rede Solana).


    ## Autenticação

    Todas as rotas exigem o header `x-api-key` com sua chave de API.


    ## Convenção de valores

    - **Request**: valores em **centavos** (inteiro). Ex: `5000` = R$50,00

    - **Response**: valores em **BRL** (float). Ex: `50.0` = R$50,00


    ## Formato de erro

    Todos os erros retornam `{ "error": { "code": "ERROR_CODE", "message": "..."
    } }`
  version: 1.0.0
  contact:
    name: Suporte Valora
    url: https://valorapayments.com.br
servers:
  - url: https://api.valorapayments.com.br
    description: Produção
  - url: https://sandbox.api.valorapayments.com.br
    description: Sandbox
security:
  - ApiKey: []
paths:
  /v1/customers:
    get:
      tags:
        - Clientes
      summary: Listar clientes
      operationId: listCustomers
      responses:
        '200':
          description: Lista de clientes
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CustomerObject'
        '429':
          $ref: '#/components/responses/RateLimited'
components:
  schemas:
    CustomerObject:
      type: object
      properties:
        customer_id:
          type: string
          example: cust_a1b2c3d4
        business_id:
          type: string
        email:
          type: string
          nullable: true
        phone_number:
          type: string
          nullable: true
        document_number:
          type: string
          nullable: true
        ip:
          type: string
          nullable: true
        metadata:
          type: string
          nullable: true
        created_at:
          type: string
          format: date-time
    Error:
      type: object
      required:
        - error
      properties:
        error:
          type: object
          required:
            - code
            - message
          properties:
            code:
              type: string
              description: Código de erro em SNAKE_UPPER_CASE
              example: NOT_FOUND
            message:
              type: string
              description: Descrição legível do erro
              example: Pagamento não encontrado.
  responses:
    RateLimited:
      description: Limite de requisições excedido (60 req/min por API key)
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error:
              code: RATE_LIMITED
              message: Muitas requisições. Tente novamente em alguns instantes.
  securitySchemes:
    ApiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: Chave de API gerada no painel Valora. Envie em todas as requisições.

````