Skip to main content

メキシコ — INE 検証

メキシコの INECredencial para Votar)を選挙人名簿に対して検証します。documentType=INEdocumentNumber の主識別子を送信してください。API は値が CIC(9桁)、OCR(13桁)、または clave de elector(18文字)かを自動判定します。

任意フィールドは公式ソースが要求するカードモデルの組み合わせに対応します:

  • citizenIdentifier — モデル E, F, G, H で CIC と併用が必要
  • emissionNumber — モデル C で OCR と clave de elector と併用が必要
  • model — 正しい組み合わせを選ぶ任意ヒント(CH

CURP の氏名照会は メキシコ市民(CURP)v2/mx/curp)を使用してください。画像から項目を抽出するには メキシコ — INE OCRv2/mx/ine/ocr)を使用してください。

API reference

Endpoint

https://api.verifik.co/v2/mx/ine

Submit an INE identifier to obtain electoral status, validity, emission metadata, and related registry fields when the credential is recognized.

Headers

NameValue
Acceptapplication/json
AuthorizationBearer <token>

Parameters

NameTypeRequiredDescriptionExample
documentTypestringYesAllowed value: INE.INE
documentNumberstringYesCIC (9 digits), OCR (13 digits), or clave de elector (18 alphanumeric).187639699
citizenIdentifierstringNoCitizen identifier from the back of the card. Needed for models E–H with CIC.031206745
emissionNumberstringNoEmission number. Needed for model C.1
modelstringNoOptional card model hint: C, D, E, F, G, or H.E

Request

import axios from "axios";

const { data } = await axios.get("https://api.verifik.co/v2/mx/ine", {
params: {
documentType: "INE",
documentNumber: "187639699",
},
headers: { Accept: "application/json", Authorization: `Bearer ${process.env.VERIFIK_TOKEN}` },
});
console.log(data);

Response

{
"data": {
"cic": "187639699",
"documentNumber": "187639699",
"documentType": "INE",
"electorKey": "CSFTGV76061131H400",
"emissionNumber": "1",
"emissionYear": "2018",
"federalDistrict": "04",
"identifierType": "cic",
"localDistrict": "03",
"message": "Vigente como medio de identificacion y puede votar",
"messageCode": "3",
"ocr": "0276031206745",
"registrationYear": "2010",
"status": "OK",
"validity": "31 de diciembre de 2030"
},
"signature": {
"dateTime": "July 14, 2026 10:00 AM",
"message": "Certified by Verifik.co"
}
}

Notes

  • documentType must be INE.
  • documentNumber auto-detects CIC (9 digits), OCR (13 digits), or clave de elector (18 alphanumeric).
  • Models E–H typically need citizenIdentifier with CIC; model C needs emissionNumber with OCR and clave de elector.
  • Negative electoral verdicts (for example not vigente) still return HTTP 200 with status and message reflecting the registry result.
  • Sandbox fixtures: 187639699, 0276031206745, CSFTGV76061131H400. Document 900404019 returns 404.
  • Related: Mexican Citizen (CURP), Mexico — INE OCR.