Skip to main content
POST
/
api
/
v1
/
merchant
/
documents
/
voters-card
Verify Voter's Card
curl --request POST \
  --url https://api.payvessel.com/kyc/api/v1/merchant/documents/voters-card \
  --header 'Content-Type: <content-type>' \
  --header 'api-key: <api-key>' \
  --header 'api-secret: <api-secret>' \
  --data '
{
  "voters_id": "AKD12345678901"
}
'
{
  "success": true,
  "message": "Voter's card verification completed successfully",
  "data": {
    "first_name": "John",
    "middle_name": "Adebayo",
    "last_name": "Doe",
    "gender": "MALE",
    "birth_date": "1992-08-14",
    "photo": "/9j/4AAQSkZJRgABAQAAAQABAAD...",
    "voters_id": "AKD12345678901",
    "polling_unit": "Ward 4 Unit 12",
    "state": "Lagos",
    "lga": "Ikeja"
  },
  "charges": {
    "charged": false,
    "charged_amount": "0.00"
  }
}

Headers

api-key
string
required

Your PayVessel API key

api-secret
string
required

Your PayVessel API secret

Content-Type
enum<string>
required

Request content type

Available options:
application/json

Body

application/json
voters_id
string
required

Voter's identification number

Example:

"AKD12345678901"

Response

Voter's card verification response

success
boolean
required
Example:

true

message
string
required
Example:

"Voter's card verification completed successfully"

data
object
required
charges
object
required