Skip to main content
POST
/
v1
/
cep
/
xml_base64
CEP en base64 (XML)
curl --request POST \
  --url https://veripay.datagora.mx/api/v1/cep/xml_base64 \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "fecha": "2023-12-25",
  "clave_rastreo": "<string>",
  "emisor": "<string>",
  "receptor": "<string>",
  "cuenta": "<string>",
  "monto": 123
}
'
{
  "ok": true,
  "filename": "cep.pdf",
  "content_type": "application/pdf",
  "data": "aSDinaTvuI8gbWludGxpZnk="
}

Authorizations

x-api-key
string
header
required

API key con formato vk_live_xxxxxxxx.SECRETO. Crea una desde el dashboard.

Body

application/json
fecha
string<date>
required

Fecha de operación en formato YYYY-MM-DD.

clave_rastreo
string
required

Clave de rastreo del SPEI.

emisor
string
required

Código Banxico del banco emisor (5 dígitos).

receptor
string
required

Código Banxico del banco receptor (5 dígitos).

cuenta
string
required

CLABE (18 dígitos) o tarjeta del receptor.

monto
number<float>
required

Monto exacto de la transferencia.

Response

CEP en base64

ok
boolean
Example:

true

filename
string
Example:

"cep.pdf"

content_type
string
Example:

"application/pdf"

data
string<byte>

Base64 del archivo.