Skip to main content
GET
https://app.usatimbre.com
/
api
/
timbre
/
get-profile
curl -X GET "https://app.usatimbre.com/api/timbre/get-profile?rfc=XAXX010101000" \
  -H "Authorization: Bearer tmb_your_api_key_here"
{
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "name": "Juan Pérez",
  "email": "[email protected]",
  "phone_number": "+525512345678",
  "tax_id": "XAXX010101000",
  "org_id": "org_123456",
  "credits_remaining": 50
}

Overview

Retrieve profile information using the RFC (Registro Federal de Contribuyentes) as a query parameter.

Query Parameters

rfc
string
required
The RFC (Mexican tax ID) of the profile to retrieve. Example: XAXX010101000

Response

id
string
Unique profile identifier (UUID)
name
string
Profile name
email
string
Email address
phone_number
string
Phone number
tax_id
string
RFC (Mexican tax ID)
org_id
string
Organization ID the profile belongs to
credits_remaining
number
Number of invoice credits remaining
curl -X GET "https://app.usatimbre.com/api/timbre/get-profile?rfc=XAXX010101000" \
  -H "Authorization: Bearer tmb_your_api_key_here"
{
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "name": "Juan Pérez",
  "email": "[email protected]",
  "phone_number": "+525512345678",
  "tax_id": "XAXX010101000",
  "org_id": "org_123456",
  "credits_remaining": 50
}