Fetch Verification
curl --request GET \
--url https://service-sandbox.tazapay.com/v3/verification/payee/{id} \
--header 'Authorization: Basic <encoded-value>'import requests
url = "https://service-sandbox.tazapay.com/v3/verification/payee/{id}"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Basic <encoded-value>'}};
fetch('https://service-sandbox.tazapay.com/v3/verification/payee/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://service-sandbox.tazapay.com/v3/verification/payee/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Basic <encoded-value>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://service-sandbox.tazapay.com/v3/verification/payee/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Basic <encoded-value>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://service-sandbox.tazapay.com/v3/verification/payee/{id}")
.header("Authorization", "Basic <encoded-value>")
.asString();require 'uri'
require 'net/http'
url = URI("https://service-sandbox.tazapay.com/v3/verification/payee/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Basic <encoded-value>'
response = http.request(request)
puts response.read_body{
"status": "success",
"message": "",
"data": {
"id": "pyv_xxxx",
"object": "verification",
"verification_status": "valid",
"status_description": "",
"beneficiary": "bnf_xxxx",
"beneficiary_details": {
"type": "individual",
"email": "",
"tax_id": "",
"address": {
"city": "Mumbai",
"country": "IN",
"line1": "123 Main Street",
"line2": "",
"postal_code": "400001",
"state": "Maharashtra"
},
"phone": {
"calling_code": "+91",
"number": "9876543210"
},
"destination_details": {
"type": "bank",
"bank": {
"account_number": "9876543210",
"account_type": "savings",
"bank_codes": {
"ifsc_code": "HDFC0001234"
},
"bank_name": "HDFC Bank",
"country": "IN",
"currency": "INR"
}
}
},
"verified_information": {
"name_match_details": {
"type": "continuous",
"value": 0.97,
"summary": "strong_match",
"translated_name": "",
"corrected_name": ""
},
"account_exists": true,
"beneficiary_type": "individual",
"transaction_activity_details": null,
"additional_information": null
},
"balance_transaction": {
"holding_currency": "USD",
"balance_impact": -10,
"balance_transaction_id": "txn_xxxx"
},
"metadata": null,
"reference_id": "",
"created_at": "2026-04-07T10:00:00Z",
"updated_at": "2026-04-07T10:00:05Z"
}
}{
"status": "error",
"message": "Invalid request",
"errors": [
{
"code": 100,
"message": "id must be prefixed with pyv_.",
"remarks": ""
}
]
}{
"status": "error",
"message": "Resource not found",
"errors": [
{
"code": 105,
"message": "No verification exists with this ID, or it belongs to another account.",
"remarks": ""
}
]
}{
"status": "error",
"message": "Internal server error",
"errors": [
{
"code": 500,
"message": "Something went wrong while processing your request. Please try again or contact support if the issue persists.",
"remarks": ""
}
]
}Tazamatch
Fetch Verification
This lets you fetch the details of a verification by its ID.
GET
/
v3
/
verification
/
payee
/
{id}
Fetch Verification
curl --request GET \
--url https://service-sandbox.tazapay.com/v3/verification/payee/{id} \
--header 'Authorization: Basic <encoded-value>'import requests
url = "https://service-sandbox.tazapay.com/v3/verification/payee/{id}"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Basic <encoded-value>'}};
fetch('https://service-sandbox.tazapay.com/v3/verification/payee/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://service-sandbox.tazapay.com/v3/verification/payee/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Basic <encoded-value>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://service-sandbox.tazapay.com/v3/verification/payee/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Basic <encoded-value>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://service-sandbox.tazapay.com/v3/verification/payee/{id}")
.header("Authorization", "Basic <encoded-value>")
.asString();require 'uri'
require 'net/http'
url = URI("https://service-sandbox.tazapay.com/v3/verification/payee/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Basic <encoded-value>'
response = http.request(request)
puts response.read_body{
"status": "success",
"message": "",
"data": {
"id": "pyv_xxxx",
"object": "verification",
"verification_status": "valid",
"status_description": "",
"beneficiary": "bnf_xxxx",
"beneficiary_details": {
"type": "individual",
"email": "",
"tax_id": "",
"address": {
"city": "Mumbai",
"country": "IN",
"line1": "123 Main Street",
"line2": "",
"postal_code": "400001",
"state": "Maharashtra"
},
"phone": {
"calling_code": "+91",
"number": "9876543210"
},
"destination_details": {
"type": "bank",
"bank": {
"account_number": "9876543210",
"account_type": "savings",
"bank_codes": {
"ifsc_code": "HDFC0001234"
},
"bank_name": "HDFC Bank",
"country": "IN",
"currency": "INR"
}
}
},
"verified_information": {
"name_match_details": {
"type": "continuous",
"value": 0.97,
"summary": "strong_match",
"translated_name": "",
"corrected_name": ""
},
"account_exists": true,
"beneficiary_type": "individual",
"transaction_activity_details": null,
"additional_information": null
},
"balance_transaction": {
"holding_currency": "USD",
"balance_impact": -10,
"balance_transaction_id": "txn_xxxx"
},
"metadata": null,
"reference_id": "",
"created_at": "2026-04-07T10:00:00Z",
"updated_at": "2026-04-07T10:00:05Z"
}
}{
"status": "error",
"message": "Invalid request",
"errors": [
{
"code": 100,
"message": "id must be prefixed with pyv_.",
"remarks": ""
}
]
}{
"status": "error",
"message": "Resource not found",
"errors": [
{
"code": 105,
"message": "No verification exists with this ID, or it belongs to another account.",
"remarks": ""
}
]
}{
"status": "error",
"message": "Internal server error",
"errors": [
{
"code": 500,
"message": "Something went wrong while processing your request. Please try again or contact support if the issue persists.",
"remarks": ""
}
]
}Was this page helpful?