---
title: "Get Profile"
method: GET
path: "/profile/{identifier}"
tags: ["Individuals"]
---

# Get Profile

`GET /profile/{identifier}`

Retrieves profile information for an individual identified by an 18-char CURP. Includes `estimated_monthly_income`, calculated as the sum of all invoice amounts for the identifier in the last 30 days (in MXN). Returns `null` when no invoices are available in that period.

## Path parameters

- `identifier` string, required

## Query parameters

- `institution` 'imss' | 'issste'

## Response `200`

Profile data for the identifier.

- ProfileResponse
  - `identifier` string — The identifier (CURP or RFC) associated with the profile.
  - `updated_at` string, date-time — Timestamp of the last data update for this profile.
  - `personal_info` PersonalInfo
    - `first_name` string
    - `last_name` string
    - `curp` string
    - `nss` string, nullable
    - `rfc` string, nullable
    - `phone` string, nullable
    - `email` string, email, nullable
    - `tax_regime` string, nullable — Tax regime, SAT RegimenFiscal.
  - `address` Address
    - `street` string
    - `neighborhood` string
    - `municipality` string
    - `state` string
    - `zip_code` string
  - `employment_status` 'employed' | 'self_employed' | 'unemployed' | 'retired' | 'unknown' — The current employment status.
  - `estimated_monthly_income` string, decimal, nullable — Estimated monthly income in MXN (BigDecimal), calculated as the sum of all invoice amounts for the identifier in the last 30 days. Returns null when no invoices are available in that period. Source: invoices only.

## Other responses

- `401` — Unauthorized - Invalid or missing API key.
- `404` — No profile data found for the identifier, or no prior successful verification exists that yielded this data.

---

[API](https://skmtc.net/burodeingresos/apis/bur-de-ingresos-api.md) · [All operations](https://skmtc.net/burodeingresos/apis/bur-de-ingresos-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/burodeingresos/bur-de-ingresos-api/versions/59e48cdbdd84/schema)
