Get Account
GET
/
accounts
/
{id}
Get Account
curl --request GET \
--url http://localhost:5001/accounts/{id} \
--header 'X-blnk-key: <api-key>'import requests
url = "http://localhost:5001/accounts/{id}"
headers = {"X-blnk-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-blnk-key': '<api-key>'}};
fetch('http://localhost:5001/accounts/{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_PORT => "5001",
CURLOPT_URL => "http://localhost:5001/accounts/{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 => [
"X-blnk-key: <api-key>"
],
]);
$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 := "http://localhost:5001/accounts/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-blnk-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("http://localhost:5001/accounts/{id}")
.header("X-blnk-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("http://localhost:5001/accounts/{id}")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Get.new(url)
request["X-blnk-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"account_id": "acc_463b25b8-7b24-4e8b-aa49-7844d9074019",
"name": "Chijioke Adeola",
"number": "294364850431",
"bank_name": "Blnk Bank",
"currency": "NGN",
"created_at": "0001-01-01T00:00:00Z",
"balance_id": "bln_0be360ca-86fe-457d-be43-daa3f966d8f0",
"identity_id": "idt_0b5f333d-e0b8-4422-8e0e-5d41a767f1db",
"ledger_id": "ldg_073f7ffe-9dfd-42ce-aa50-d1dca1788adc",
"meta_data": {
"reference": "XYZ123456789",
"verified": true
},
"ledger": {
"id": "ldg_073f7ffe-9dfd-42ce-aa50-d1dca1788adc",
"name": "Customer wallets Ledger",
"created_at": "2024-02-20T05:28:03.563132Z"
},
"balance": {
"balance_id": "bln_0be360ca-86fe-457d-be43-daa3f966d8f0",
"balance": 30300,
"credit_balance": 30600,
"debit_balance": 300,
"currency": "NGN",
"ledger_id": "ldg_073f7ffe-9dfd-42ce-aa50-d1dca1788adc",
"identity_id": "",
"created_at": "2024-02-20T05:33:01.3116Z",
"meta_data": null
},
"identity": {
"identity_id": "idt_0b5f333d-e0b8-4422-8e0e-5d41a767f1db",
"identity_type": "individual",
"organization_name": "",
"category": "",
"first_name": "Chijioke",
"last_name": "Adeola",
"other_names": "Emeka",
"gender": "male",
"dob": "1990-01-01T00:00:00Z",
"email_address": "chijioke.adeola@gmail.com",
"phone_number": "+2347012345678",
"nationality": "Nigerian",
"street": "10 Aso Villa Way",
"country": "Nigeria",
"state": "Lagos",
"post_code": "101001",
"city": "Lagos",
"created_at": "2023-10-16T10:00:00Z",
"meta_data": null
}
}Authorizations
Path Parameters
Example:
"acc_463b25b8-7b24-4e8b-aa49-7844d9074019"
Query Parameters
Example:
"identity"
Response
200 - application/json; charset=utf-8
OK
Show child attributes
Show child attributes
Example:
{
"verified": true,
"reference": "XYZ123456789"
}
Show child attributes
Show child attributes
Example:
{
"ledger_id": "ldg_073f7ffe-9dfd-42ce-aa50-d1dca1788adc",
"name": "Customer wallets Ledger",
"created_at": "2024-02-20T05:28:03.563132Z",
"meta_data": { "project_owner": "Blnk Tech" }
}
Show child attributes
Show child attributes
Example:
{
"balance_id": "bln_0be360ca-86fe-457d-be43-daa3f966d8f0",
"balance": 30300,
"credit_balance": 30600,
"debit_balance": 300,
"currency": "NGN",
"ledger_id": "ldg_073f7ffe-9dfd-42ce-aa50-d1dca1788adc",
"identity_id": "",
"created_at": "2024-02-20T05:33:01.3116Z",
"meta_data": null
}
Show child attributes
Show child attributes
Example:
{
"identity_id": "idt_0b5f333d-e0b8-4422-8e0e-5d41a767f1db",
"identity_type": "individual",
"organization_name": "",
"category": "",
"first_name": "Chijioke",
"last_name": "Adeola",
"other_names": "Emeka",
"gender": "male",
"dob": "1990-01-01T00:00:00Z",
"email_address": "chijioke.adeola@gmail.com",
"phone_number": "+2347012345678",
"nationality": "Nigerian",
"street": "10 Aso Villa Way",
"country": "Nigeria",
"state": "Lagos",
"post_code": "101001",
"city": "Lagos",
"created_at": "2023-10-16T10:00:00Z",
"meta_data": null
}
Was this page helpful?
⌘I
Get Account
curl --request GET \
--url http://localhost:5001/accounts/{id} \
--header 'X-blnk-key: <api-key>'import requests
url = "http://localhost:5001/accounts/{id}"
headers = {"X-blnk-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-blnk-key': '<api-key>'}};
fetch('http://localhost:5001/accounts/{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_PORT => "5001",
CURLOPT_URL => "http://localhost:5001/accounts/{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 => [
"X-blnk-key: <api-key>"
],
]);
$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 := "http://localhost:5001/accounts/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-blnk-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("http://localhost:5001/accounts/{id}")
.header("X-blnk-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("http://localhost:5001/accounts/{id}")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Get.new(url)
request["X-blnk-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"account_id": "acc_463b25b8-7b24-4e8b-aa49-7844d9074019",
"name": "Chijioke Adeola",
"number": "294364850431",
"bank_name": "Blnk Bank",
"currency": "NGN",
"created_at": "0001-01-01T00:00:00Z",
"balance_id": "bln_0be360ca-86fe-457d-be43-daa3f966d8f0",
"identity_id": "idt_0b5f333d-e0b8-4422-8e0e-5d41a767f1db",
"ledger_id": "ldg_073f7ffe-9dfd-42ce-aa50-d1dca1788adc",
"meta_data": {
"reference": "XYZ123456789",
"verified": true
},
"ledger": {
"id": "ldg_073f7ffe-9dfd-42ce-aa50-d1dca1788adc",
"name": "Customer wallets Ledger",
"created_at": "2024-02-20T05:28:03.563132Z"
},
"balance": {
"balance_id": "bln_0be360ca-86fe-457d-be43-daa3f966d8f0",
"balance": 30300,
"credit_balance": 30600,
"debit_balance": 300,
"currency": "NGN",
"ledger_id": "ldg_073f7ffe-9dfd-42ce-aa50-d1dca1788adc",
"identity_id": "",
"created_at": "2024-02-20T05:33:01.3116Z",
"meta_data": null
},
"identity": {
"identity_id": "idt_0b5f333d-e0b8-4422-8e0e-5d41a767f1db",
"identity_type": "individual",
"organization_name": "",
"category": "",
"first_name": "Chijioke",
"last_name": "Adeola",
"other_names": "Emeka",
"gender": "male",
"dob": "1990-01-01T00:00:00Z",
"email_address": "chijioke.adeola@gmail.com",
"phone_number": "+2347012345678",
"nationality": "Nigerian",
"street": "10 Aso Villa Way",
"country": "Nigeria",
"state": "Lagos",
"post_code": "101001",
"city": "Lagos",
"created_at": "2023-10-16T10:00:00Z",
"meta_data": null
}
}