We provide platform services for the future of finance.
Our platform helps you to stay ahead of the curve and build the future of finance.
Get started
KYC/KYB
Modern tools to easily identify and verify your customers.
Whether you are identifying a business or retail customers, Anchor provides everything you need to acquire and onboard customers with ease.
Get started
Billing systems
Receive, and reconcile payments easily.
Automate & streamline your processes, while providing control and transparency for your customers.
Get started
Ledger
Dynamic, accurate and up-to-date.
Ledger transactions instantly to ensure you have the most up-to-date picture of your book of business.
Get started
Made for developers, by developers.
Anchor provides all you need to build, embed and launch banking and payment products.
View docs
developersection.js
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
curl --request POST \
 --url https://api.sandbox.getanchor.co/api/v1/statements \
 --header 'accept: application/json' \
 --header 'content-type: application/json' \
 --header 'x-anchor-key: ' \
 --data '
{
 "data": {
  "type": "DepositAccount",
  "attributes": {
  "productName": "CURRENT"
 },
 "relationships": {
  "customer": {
  "data": {
  "id": "16976298908802-anc_bus_cst",
  "type": "BusinessCustomer"
  }
 }
}
curl --request GET \
 --url https://api.sandbox.getanchor.co/api/v1/payments/169900905874731-anc_py\
 --header 'accept: application/json' \
  --header 'x-anchor-key: < API Key>'
curl --request POST \
 --url https://api.sandbox.getanchor.co/api/v1/virtual-nubans \
 --header 'accept: application/json' \
 --header 'content-type: application/json' \
 --header 'x-anchor-key: < API Key>' \
 --data '
{
 "data": {
  "type": "VirtualNuban",
  "relationships": {
  "settlementAccount": {
  "data": {
  "type": "DepositAccount"
  "id": "16968487149490-anc_acc",
  }
 }
}
curl --request POST \
 --url https://api.sandbox.getanchor.co/api/v1/transfers \
 --header 'accept: application/json' \
 --header 'content-type: application/json' \
 --header 'x-anchor-key: ' \
 --data '
{
 "data": {
  "type": "BookTransfer",
  "attributes": {
   "currency": "NGN"
   "amount": "500000"
   "reason": "simple transfer"
   "reference": "ref_achorr_12321"
 },
 "relationships": {
  "destinationAccount": {
  "data": {
  "type": "SubAccount"
  "id": "16932376220293-anc_subacc",
  },
 }
 "account": {
  "data": {
  "type": "SubAccount"
  "id": "16932386254124-anc_subacc",
  }
 }
}
<Accounts/>
return payments
export ({Cards})
Transfers