RFC Extended
Description​
A solution that provides general information on the Mexican tax id information using the RFC to be verified at SAT.
HTTP method POST​
Endpoint​
https://apidev.msla-id.com/experience-companyinfo-api-v1/api/idv-govcheck/v1/company/rfc-extended
info
Before proceeding, make sure you have your jwt token, if you don't, check the login documentation.
Request header parameter​
| NAME | REQUIRED | TYPE | DESCRIPTION |
|---|---|---|---|
| Content-Type | ✅ | string | application/json |
| Authorization | ✅ | string | Bearer JWT token |
Request body parameter​
| NAME | REQUIRED | TYPE | DESCRIPTION |
|---|---|---|---|
| cif | ✅ | string | Tax ID number issued by SAT |
| rfc | ✅ | string | Tax ID registration code issued by SAT |
Request body example​
{
"cif": "17070152364",
"rfc": "RAZR811011KI1"
}
Status code responses​
| Code | Description |
|---|---|
| 200 | OK |
| 400 | Bad request |
| 401 | Unauthorized |
| 404 | Not found |
| 500 | Internal server error. |
The full documentation error codes can be found here.
Response 200 status code​
{
"traceId": "ed6e48b2ba729605",
"timestamp": "2026-05-12 14:43:29",
"data": {
"rfc": "RAZR811011KI1",
"cif": "17070152364",
"identificationData": {
"curp": "RAZR811011HVZMPB01",
"names": "ROBERTO ALONSO",
"fathersLastName": "RAMOS",
"maternalSurname": "ZAPATA",
"dateBirth": "11-10-1981",
"operationsStartDate": "26-03-2003",
"taxpayerSituation": "REACTIVADO",
"dateLastChangeSituation": "01-06-2005"
},
"locationData": {
"federativeEntity": "CIUDAD DE MEXICO",
"municipalityDelegation": "MIGUEL HIDALGO",
"colony": "LOS MANZANOS",
"roadType": "CALLE",
"roadName": "LAGO COMO",
"outerNumber": "128",
"interiorNumber": "C 502",
"postalCode": "11460",
"email": "roberto.rz@gmail.com",
"al": "CIUDAD DE MEXICO 1"
},
"fiscalCharacteristics": [
{
"regime": null,
"highDate": "01-04-2018"
},
{
"regime": null,
"highDate": "15-01-2026"
}
]
}
}
Response 400 status code​
{
"traceId": "542fc743fffda052",
"timestamp": "2025-03-16 11:20:46",
"code": "IDV-4005",
"message": "Bad request - Invalid parameters provided",
"data": null
}
Response 401 status code​
{
"timestamp": "2025-03-16T11:20:46.000Z",
"status": 401,
"error": "Unauthorized",
"message": "Bearer token is missing or invalid",
"path": "/api/idv-govcheck/v1/mx-tax-identifications"
}
Response 404 status code​
{
"traceId": "352265cf81878d6a",
"timestamp": "2026-05-13 15:07:58",
"code": "IDV-3002",
"message": "Error: Missing CIF parameter",
"data": null
}
{
"traceId": "1ca8018748015131",
"timestamp": "2026-05-13 15:09:00",
"code": "IDV-3003",
"message": "Error: Missing RFC parameter",
"data": null
}
{
"traceId": "e242e684f90dbf04",
"timestamp": "2026-05-13 15:09:33",
"code": "IDV-3004",
"message": "Error: Invalid RFC format",
"data": null
}
Response 500 status code​
{
"traceId": "86c6eda02b615604",
"timestamp": "2024-01-09 15:44:32",
"code": "IDV-1008",
"message": "Error in the source of origin, please contact an administrator!",
"data": null
}