curl --request GET \
--url https://api.saber.money/api/v2/user \
--header 'X-Api-Key: <x-api-key>' \
--header 'X-Request-Id: <x-request-id>' \
--header 'X-Signature: <x-signature>' \
--header 'X-Timestamp: <x-timestamp>'import requests
url = "https://api.saber.money/api/v2/user"
headers = {
"X-Api-Key": "<x-api-key>",
"X-Signature": "<x-signature>",
"X-Timestamp": "<x-timestamp>",
"X-Request-Id": "<x-request-id>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {
'X-Api-Key': '<x-api-key>',
'X-Signature': '<x-signature>',
'X-Timestamp': '<x-timestamp>',
'X-Request-Id': '<x-request-id>'
}
};
fetch('https://api.saber.money/api/v2/user', 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://api.saber.money/api/v2/user",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-Api-Key: <x-api-key>",
"X-Request-Id: <x-request-id>",
"X-Signature: <x-signature>",
"X-Timestamp: <x-timestamp>"
],
]);
$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://api.saber.money/api/v2/user"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-Api-Key", "<x-api-key>")
req.Header.Add("X-Signature", "<x-signature>")
req.Header.Add("X-Timestamp", "<x-timestamp>")
req.Header.Add("X-Request-Id", "<x-request-id>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.saber.money/api/v2/user")
.header("X-Api-Key", "<x-api-key>")
.header("X-Signature", "<x-signature>")
.header("X-Timestamp", "<x-timestamp>")
.header("X-Request-Id", "<x-request-id>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.saber.money/api/v2/user")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-Api-Key"] = '<x-api-key>'
request["X-Signature"] = '<x-signature>'
request["X-Timestamp"] = '<x-timestamp>'
request["X-Request-Id"] = '<x-request-id>'
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"user_uuid": "b3e77842-af94-449e-bd29-187ce54dd535",
"client_user_id": "",
"kyc_status": "Verified",
"bank_accounts": [
{
"bank_id": "8dd23876-1588-4ba0-b813-b4e274bb5d76",
"account_number": "12XXXXX5678",
"account_holder_name": "Utkarsh",
"routing_code": "123456",
"routing_type": "IFSC",
"status": "APPROVED",
"is_default": false,
"message": "Bank account validated successfully",
"created_at": "2026-03-13T09:08:06Z",
"updated_at": "2026-03-13T09:08:07Z",
"is_nre": false,
"country": "IND"
}
],
"is_nri": false,
"email": "",
"phone": "+910078678200",
"phone_country": "IND",
"kyc_country": "IND"
}
}{
"success": false,
"errors": [
{
"code": 6092,
"text": "Invalid X-Api-Key or X-Client-Id"
}
]
}{
"success": false,
"errors": [
{
"code": 6092,
"text": "Invalid X-Api-Key or X-Client-Id"
}
]
}{
"success": false,
"errors": [
{
"code": 6092,
"text": "Invalid X-Api-Key or X-Client-Id"
}
]
}{
"success": false,
"errors": [
{
"code": 6092,
"text": "Invalid X-Api-Key or X-Client-Id"
}
]
}Get User Details
Fetch user’s details, including KYC and Bank Account status
Query parameters
Exactly one of user_uuid, client_user_id, email, or phone must be provided. Passing multiple will return an error.
Response field values
| Field | Possible Values |
|---|---|
kyc_status | Verified, Unverified |
curl --request GET \
--url https://api.saber.money/api/v2/user \
--header 'X-Api-Key: <x-api-key>' \
--header 'X-Request-Id: <x-request-id>' \
--header 'X-Signature: <x-signature>' \
--header 'X-Timestamp: <x-timestamp>'import requests
url = "https://api.saber.money/api/v2/user"
headers = {
"X-Api-Key": "<x-api-key>",
"X-Signature": "<x-signature>",
"X-Timestamp": "<x-timestamp>",
"X-Request-Id": "<x-request-id>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {
'X-Api-Key': '<x-api-key>',
'X-Signature': '<x-signature>',
'X-Timestamp': '<x-timestamp>',
'X-Request-Id': '<x-request-id>'
}
};
fetch('https://api.saber.money/api/v2/user', 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://api.saber.money/api/v2/user",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-Api-Key: <x-api-key>",
"X-Request-Id: <x-request-id>",
"X-Signature: <x-signature>",
"X-Timestamp: <x-timestamp>"
],
]);
$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://api.saber.money/api/v2/user"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-Api-Key", "<x-api-key>")
req.Header.Add("X-Signature", "<x-signature>")
req.Header.Add("X-Timestamp", "<x-timestamp>")
req.Header.Add("X-Request-Id", "<x-request-id>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.saber.money/api/v2/user")
.header("X-Api-Key", "<x-api-key>")
.header("X-Signature", "<x-signature>")
.header("X-Timestamp", "<x-timestamp>")
.header("X-Request-Id", "<x-request-id>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.saber.money/api/v2/user")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-Api-Key"] = '<x-api-key>'
request["X-Signature"] = '<x-signature>'
request["X-Timestamp"] = '<x-timestamp>'
request["X-Request-Id"] = '<x-request-id>'
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"user_uuid": "b3e77842-af94-449e-bd29-187ce54dd535",
"client_user_id": "",
"kyc_status": "Verified",
"bank_accounts": [
{
"bank_id": "8dd23876-1588-4ba0-b813-b4e274bb5d76",
"account_number": "12XXXXX5678",
"account_holder_name": "Utkarsh",
"routing_code": "123456",
"routing_type": "IFSC",
"status": "APPROVED",
"is_default": false,
"message": "Bank account validated successfully",
"created_at": "2026-03-13T09:08:06Z",
"updated_at": "2026-03-13T09:08:07Z",
"is_nre": false,
"country": "IND"
}
],
"is_nri": false,
"email": "",
"phone": "+910078678200",
"phone_country": "IND",
"kyc_country": "IND"
}
}{
"success": false,
"errors": [
{
"code": 6092,
"text": "Invalid X-Api-Key or X-Client-Id"
}
]
}{
"success": false,
"errors": [
{
"code": 6092,
"text": "Invalid X-Api-Key or X-Client-Id"
}
]
}{
"success": false,
"errors": [
{
"code": 6092,
"text": "Invalid X-Api-Key or X-Client-Id"
}
]
}{
"success": false,
"errors": [
{
"code": 6092,
"text": "Invalid X-Api-Key or X-Client-Id"
}
]
}Headers
Your API key (configured in credentials)
HMAC-SHA256 signature (auto-generated) To test manually: HMAC-SHA256 of apiKey + timestamp (or apiKey + timestamp + userId when X-User-Id is required), keyed with your API secret. The HMAC Generator flow computes this for you.
Unix timestamp in seconds (auto-generated) Unix seconds, e.g. Math.floor(Date.now() / 1000). Must match the timestamp used in the X-Signature computation.
Unique request identifier (auto-generated) Any unique string per request, e.g. a UUID.
Query Parameters
User UUID to look up.
Client-specific user ID.
User's email address.
User's phone number in E.164 format (e.g. +919876543210).
Response
Successful response
Related topics
Frequently Asked QuestionsGet Transaction DetailsGet Beneficiary DetailsGet External Buy DetailGet User LimitsWas this page helpful?