ボリビア - 投票所
VerifikはCIと生年月日を使用してYo Participo (OEP)を照会します。OEPデータの利用が許可される選挙確認、有権者オンボーディング、コンプライアンスワークフローにこのエンドポイントを使用してください。
ソースが提供する場合、選挙場所の詳細を返します:
documentType— 許可値:CIdocumentNumber— ボリビア身分証番号(5–13文字)dateOfBirth— DD/MM/YYYY形式の生年月日(OEP記録と一致する必要あり)fullName— 選挙登録の市民氏名votingStatus— 市民の投票資格の有無department、locality、pollingPlace、pollingTable— 選挙場所フィールドelection— 提供時の選挙ラベルまたは登録更新メモ- 任意フィールド — ソースに含まれる場合
isJury、jurySortDate、politicalMembership、latitude、longitude force— 任意;trueでキャッシュをバイパス- Verifik 署名付きレスポンス
Endpoint
GET v2/bo/votacion
Headers
| Header | Value | Description |
|---|---|---|
| Accept | application/json | レスポンス形式 |
| Authorization | Bearer <token> | Verifik JWT |
Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| documentType | String | Yes | 書類タイプ。許可値:CI。 |
| documentNumber | String | Yes | 発行コードなしのボリビアCI番号(5–13文字)。 |
| dateOfBirth | String | Yes | DD/MM/YYYY形式の生年月日。 |
| force | String | No | trueに設定するとキャッシュをバイパスし最新データを取得します。 |
Request
- JavaScript
- Python
const { data } = await axios.get("https://api.verifik.co/v2/bo/votacion", {
params: {
documentType: "CI",
documentNumber: "4511200",
dateOfBirth: "27/03/1978",
},
headers: {
Accept: "application/json",
Authorization: `Bearer ${process.env.VERIFIK_TOKEN}`,
},
});
console.log(data);
url = "https://api.verifik.co/v2/bo/votacion"
headers = {"Accept": "application/json", "Authorization": f"Bearer {os.getenv('VERIFIK_TOKEN')}"}
params = {"documentType": "CI", "documentNumber": "4511200", "dateOfBirth": "27/03/1978"}
r = requests.get(url, headers=headers, params=params)
print(r.json())
Response
- 200
- 404
- 409
{
"data": {
"documentType": "CI",
"documentNumber": "4511200",
"fullName": "LIDIA IRIARTE TORREZ",
"votingStatus": "USTED ESTA HABILITADO/A PARA VOTAR",
"country": "BOLIVIA",
"department": "Cochabamba",
"locality": "Cercado, Cochabamba",
"election": "Elecciones Generales 2026",
"pollingPlace": "Unidad Educativa Santa Maria Micaela",
"pollingTable": "18"
},
"signature": {
"dateTime": "July 2, 2026 3:00 PM",
"message": "Certified by Verifik.co"
}
}
{
"code": "NotFound",
"message": "Record not found."
}
{
"code": "MissingParameter",
"message": "missing dateOfBirth\n"
}
Notes
- **
documentTypeはCIである必要があり、dateOfBirth**は必須でOEP記録と一致する必要があります。 - 任意の陪審員、党員、座標フィールドはソースHTML/JSONに含まれる場合のみ表示されます。
- MongoDBキャッシュレコードをバイパスする必要がある場合は**
force=true**を使用してください。 - レスポンスは機微な個人データです。適用されるプライバシー法を遵守してください。