Skip to main content
GET
/
cuits
Obtener CUITs
curl --request GET \
  --url https://facture.ar/api/cuits \
  --header 'x-api-key: <api-key>'
{
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "cuit": "<string>",
      "businessName": "<string>",
      "status": "active",
      "type": "monotributo",
      "category": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "meta": {
    "page": 123,
    "limit": 123,
    "total": 123,
    "totalPages": 123
  }
}

Authorizations

x-api-key
string
header
required

API Key para autenticación. Formato: test_sk_xxx para testing, prod_sk_xxx para producción.

Query Parameters

status
enum<string>

Filtrar por estado del CUIT

Available options:
active,
inactive,
pending
type
enum<string>

Filtrar por tipo de CUIT

Available options:
monotributo,
responsable_inscripto,
exento
includeDefaults
boolean
default:false

Incluir valores por defecto

Response

Lista de CUITs obtenida exitosamente

data
object[]
meta
object