Skip to main content

Documentation Index

Fetch the complete documentation index at: https://developer.tazapay.com/llms.txt

Use this file to discover all available pages before exploring further.

This feature is coming soon. The APIs listed here are for reference only and are not yet available in production or sandbox.
cURL
curl --request GET \
  --url 'https://service-sandbox.tazapay.com/v3/verifications/payee?beneficiary=bnf_xxxx&limit=10' \
  --header 'Authorization: Basic <encoded-value>'
200
{
  "status": "success",
  "message": "",
  "data": {
    "object": "list",
    "has_more": false,
    "data": [
      {
        "id": "ver_xxxx",
        "object": "verification",
        "verification_status": "valid",
        "status_description": "",
        "beneficiary": "bnf_xxxx",
        "beneficiary_details": {
          "type": "individual",
          "address": {
            "city": "Mumbai",
            "country": "IN",
            "line1": "123 Main Street",
            "line2": null,
            "postal_code": "400001",
            "state": "Maharashtra"
          },
          "phone": {
            "calling_code": "+91",
            "number": "9876543210"
          },
          "tax_id": null,
          "destination": "bnk_xxxx"
        },
        "destination_details": {
          "type": "bank",
          "local_payment_network": null
        },
        "verified_information": {
          "match_details": {
            "type": "continuous",
            "value": 0.97,
            "summary": "strong_match"
          },
          "account_exists": true,
          "matched_name_details": {
            "matched_name_translation": null,
            "corrected_name_returned": null
          },
          "beneficiary_type": "individual",
          "bank": {
            "account_number": "9876543210",
            "account_type": "savings",
            "bank_codes": {
              "ifsc_code": "HDFC0001234"
            },
            "bank_name": "HDFC Bank",
            "branch_name": null,
            "address": null,
            "country": "IN",
            "currency": "INR",
            "payment_scheme_eligibility": null
          },
          "additional_information": null
        },
        "metadata": null,
        "reference_id": null,
        "created_at": "2026-04-07T10:00:00Z",
        "updated_at": "2026-04-07T10:00:05Z"
      }
    ]
  }
}

List Verifications

GET /v3/verifications/payee Returns verification objects in reverse chronological order. Use the beneficiary filter to retrieve all verifications linked to a specific beneficiary, or use created filters to narrow by date range.

Authorizations

Authorization
string
required
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Query Parameters

beneficiary
string
Filter by beneficiary ID (bnf_xxxx). Returns all verifications linked to the specified beneficiary.
limit
integer
Number of objects to return. Default: 10. Range: 1–100.
starting_after
string
Cursor for forward pagination. Pass the id of the last object from the previous page.
ending_before
string
Cursor for backward pagination. Pass the id of the first object from the current page.
created
object
Filter by creation time. Supports gt, gte, lt, lte as Unix timestamps (e.g. created[gte]=1700000000).

Response

object
string
Fixed value: list.
has_more
boolean
Whether more objects exist beyond the current page.
data
array
List of verification objects in reverse chronological order.