BillKit/Docs Console
Payments

Get payment provider payload

Fetch the provider's own record of this charge, live.

GET/v1/payments/{payment_id}/provider
Operation get_payment_provider_payload · Scope payments:read · Spec snapshot 2026-09-13

Parameters

ParameterDescription
payment_idstring · pathrequiredNo description in the spec.

Returns

Returns a ProviderPayloadResponse object.

Errors

Status Cause
401 Missing or invalid API key.
403 Key is missing the payments:read scope.
404 No such object, or it belongs to the other mode.
422 Validation Error
429 Rate limited. Back off and retry.
Request · curl
curl -X GET https://api.billkit.eu/v1/payments/pay_9XKp2vQ1/provider \
  -H "Authorization: Bearer $BILLKIT_SECRET_KEY"
Response · 200 OK
{
  "available": false,
  "object": "payment.provider_payload",
  "payload": {
    "key": "value"
  },
  "provider": "string",
  "provider_payment_id": "provider_payment_9XKp2vQ1",
  "unavailable_reason": "string"
}