Transfers API
adyen · Company
The Transfers API provides endpoints that you can use to get information about all your transactions, move funds within your balance platform or send funds from your balance platform to a [transfer instrument](https://docs.adyen.com/api-explorer/#/legalentity/latest/post/transferInstruments). ## Authentication Your Adyen contact will provide your API credential and an API key. To connect to the API, add an `X-API-Key` header with the API key as the value, for example: ``` curl -H "Content-Typ
Authentication
Sample Requests
Returns all transactions related to a balance account with a payment instrument of type **bankAccount**. This endpoint supports cursor-based pagination. The response returns the first page of results, and returns links to the next page when applicable. You can use the links to page through the resu
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/adyen.com/TransferService/3/transactions?limit=10&cursor=example&createdSince=example&createdUntil=example&accountHolderId=example&balancePlatform=example&balanceAccountId=example&paymentInstrumentId=example"
import requests
params = {
"limit": "10",
"cursor": "example",
"createdSince": "example",
"createdUntil": "example",
"accountHolderId": "example",
"balancePlatform": "example",
"balanceAccountId": "example",
"paymentInstrumentId": "example"
}
response = requests.get(
"https://api.apis.guru/v2/specs/adyen.com/TransferService/3/transactions",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/adyen.com/TransferService/3/transactions');
url.searchParams.set('limit', '10');
url.searchParams.set('cursor', 'example');
url.searchParams.set('createdSince', 'example');
url.searchParams.set('createdUntil', 'example');
url.searchParams.set('accountHolderId', 'example');
url.searchParams.set('balancePlatform', 'example');
url.searchParams.set('balanceAccountId', 'example');
url.searchParams.set('paymentInstrumentId', 'example');
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/adyen.com/TransferService/3/transactions")
q := baseURL.Query()
q.Set("limit", "10")
q.Set("cursor", "example")
q.Set("createdSince", "example")
q.Set("createdUntil", "example")
q.Set("accountHolderId", "example")
q.Set("balancePlatform", "example")
q.Set("balanceAccountId", "example")
q.Set("paymentInstrumentId", "example")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/adyen.com/TransferService/3/transactions")
uri.query = URI.encode_www_form({
"limit" => "10",
"cursor" => "example",
"createdSince" => "example",
"createdUntil" => "example",
"accountHolderId" => "example",
"balancePlatform" => "example",
"balanceAccountId" => "example",
"paymentInstrumentId" => "example"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/adyen.com/TransferService/3/transactions?" . http_build_query([
"limit" => "10",
"cursor" => "example",
"createdSince" => "example",
"createdUntil" => "example",
"accountHolderId" => "example",
"balancePlatform" => "example",
"balanceAccountId" => "example",
"paymentInstrumentId" => "example"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Returns a transaction.
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/adyen.com/TransferService/3/transactions/{id}"import requests
response = requests.get(
"https://api.apis.guru/v2/specs/adyen.com/TransferService/3/transactions/{id}",
)
print(response.json())const url = 'https://api.apis.guru/v2/specs/adyen.com/TransferService/3/transactions/{id}';
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
)
func main() {
targetURL := "https://api.apis.guru/v2/specs/adyen.com/TransferService/3/transactions/{id}"
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/adyen.com/TransferService/3/transactions/{id}")
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/adyen.com/TransferService/3/transactions/{id}";
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Starts a request to transfer funds to [balance accounts](https://docs.adyen.com/api-explorer/#/balanceplatform/latest/post/balanceAccounts), [transfer instruments](https://docs.adyen.com/api-explorer/#/legalentity/latest/post/transferInstruments), or third-party bank accounts. Adyen sends the outcom
Hover any highlighted part to learn what it does
curl -X POST "https://api.apis.guru/v2/specs/adyen.com/TransferService/3/transfers"
import requests
response = requests.post(
"https://api.apis.guru/v2/specs/adyen.com/TransferService/3/transfers",
)
print(response.json())const url = 'https://api.apis.guru/v2/specs/adyen.com/TransferService/3/transfers';
const response = await fetch(url, {
method: 'POST',
});
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
)
func main() {
targetURL := "https://api.apis.guru/v2/specs/adyen.com/TransferService/3/transfers"
req, _ := http.NewRequest("POST", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/adyen.com/TransferService/3/transfers")
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Post.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/adyen.com/TransferService/3/transfers";
$opts = ["http" => [
"method" => "POST",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Postman Setup Guide
- See official documentation for authentication and setup.
What can you build with Transfers API?
Transfers API is a Company API. Developers commonly use company APIs for:
- enriching CRM records with company firmographics
- building lead-generation and prospecting tools
- verifying business identity and registration details
- monitoring competitors and market intelligence
- powering B2B data enrichment pipelines
No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. Transfers API is free to use, making it a low-risk choice to experiment with.
New to APIs? Read our beginner's guide · Learn about API keys · What is REST?