Skip to main content
GET
https://app.usatimbre.com
/
api
/
profile
/
{rfc}
/
tax-info
curl -X GET "https://app.usatimbre.com/api/profile/XAXX010101000/tax-info" \
  -H "Authorization: Bearer tmb_your_api_key_here"
{
  "tax_id": "XAXX010101000",
  "taxpayer": "Juan Pérez",
  "street": "Calle Principal 123",
  "ext_num": "123",
  "neighborhood": "Centro",
  "city": "Ciudad de México",
  "state": "CDMX",
  "country": "México",
  "postal_code": "12345",
  "fiscal_regimen": "601",
  "cfdi_use": "G03"
}

Overview

Retrieve the tax information associated with a profile. This includes the RFC, postal code, fiscal regimen, and CFDI usage.

Path Parameters

rfc
string
required
The RFC (Mexican tax ID) or UUID of the profile

Response

tax_id
string
RFC (Registro Federal de Contribuyentes)
taxpayer
string
Legal name of the taxpayer
street
string
Street address
ext_num
string
External number
neighborhood
string
Neighborhood (Colonia)
city
string
City
state
string
State
country
string
Country
postal_code
string
Postal code (Código Postal)
fiscal_regimen
string
Fiscal regimen code (e.g., 601 for General de Ley Personas Morales)
cfdi_use
string
CFDI usage code (e.g., G03 for Gastos en general)
curl -X GET "https://app.usatimbre.com/api/profile/XAXX010101000/tax-info" \
  -H "Authorization: Bearer tmb_your_api_key_here"
{
  "tax_id": "XAXX010101000",
  "taxpayer": "Juan Pérez",
  "street": "Calle Principal 123",
  "ext_num": "123",
  "neighborhood": "Centro",
  "city": "Ciudad de México",
  "state": "CDMX",
  "country": "México",
  "postal_code": "12345",
  "fiscal_regimen": "601",
  "cfdi_use": "G03"
}