# Crear una cuenta Source: https://docs.caudalflow.com/api-reference/cuentas/crear-una-cuenta /api-reference/openapi.json post /v1/accounts Creates an account. Send an Idempotency-Key header to make retries safe: repeating the request with the same key returns the originally created account (200) instead of creating a duplicate. An account name is not unique — two accounts can carry the same name, so a repeated name without a key creates a second account. # Leer una cuenta Source: https://docs.caudalflow.com/api-reference/cuentas/leer-una-cuenta /api-reference/openapi.json get /v1/accounts/{id} # Listar cuentas Source: https://docs.caudalflow.com/api-reference/cuentas/listar-cuentas /api-reference/openapi.json get /v1/accounts Returns accounts for the authenticated organization, newest first. Cursor-paginated. # Crear un pedido Source: https://docs.caudalflow.com/api-reference/pedidos/crear-un-pedido /api-reference/openapi.json post /v1/orders Creates a confirmed order. Send an Idempotency-Key header to make retries safe: repeating the request with the same key returns the originally created order (200) instead of creating a duplicate. # Leer un pedido Source: https://docs.caudalflow.com/api-reference/pedidos/leer-un-pedido /api-reference/openapi.json get /v1/orders/{id} # Listar pedidos Source: https://docs.caudalflow.com/api-reference/pedidos/listar-pedidos /api-reference/openapi.json get /v1/orders Returns orders for the authenticated organization, newest first. Cursor-paginated. # Leer un producto Source: https://docs.caudalflow.com/api-reference/productos/leer-un-producto /api-reference/openapi.json get /v1/products/{id} # Listar productos Source: https://docs.caudalflow.com/api-reference/productos/listar-productos /api-reference/openapi.json get /v1/products Returns the organization's product catalog, newest first. Cursor-paginated. # Introducciónn Source: https://docs.caudalflow.com/introduction Conecta un ERP u otro sistema con Caudal. Caudal recoge pedidos por WhatsApp, teléfono y correo. Tu ERP sigue como el sistema de referencia. Una integración conecta los dos sistemas con la API pública de Caudal. Crea una API key y llama a `/v1`. Cada ruta, con su petición y su respuesta. ## URL base ``` https://api.caudalflow.com/v1 ```