Find an API

Search public APIs with auth details & Postman guides

← All APIs

Management API

adyen · Company

Company No Auth Free & Open payment

Configure and manage your Adyen company and merchant accounts, stores, and payment terminals. ## Authentication Each request to the Management API must be signed with an API key. [Generate your API key](https://docs.adyen.com/development-resources/api-credentials#generate-api-key) in the Customer Area and then set this key to the `X-API-Key` header value. To access the live endpoints, you need to generate a new API key in your live Customer Area. ## Versioning Management API handles versioning

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

GET Get a list of company accounts

Returns the list of company accounts that your API credential has access to. The list is grouped into pages as defined by the query parameters. To make this request, your API credential must have the following [roles](https://docs.adyen.com/development-resources/api-credentials#api-permissions): *

https://api.apis.guru/v2/specs/adyen.com/ManagementService/1/companies?pageSize=1&pageNumber=1

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/adyen.com/ManagementService/1/companies?pageSize=1&pageNumber=1"
import requests
params = {
    "pageSize": "1",
    "pageNumber": "1"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/adyen.com/ManagementService/1/companies",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/adyen.com/ManagementService/1/companies');
url.searchParams.set('pageSize', '1');
url.searchParams.set('pageNumber', '1');

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/ManagementService/1/companies")
	q := baseURL.Query()
	q.Set("pageSize", "1")
	q.Set("pageNumber", "1")
	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/ManagementService/1/companies")
uri.query = URI.encode_www_form({
  "pageSize" => "1",
  "pageNumber" => "1"
})

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/ManagementService/1/companies?" . http_build_query([
    "pageSize" => "1",
    "pageNumber" => "1"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET Get a list of merchant accounts

Returns the list of merchant accounts that your API credential has access to. The list is grouped into pages as defined by the query parameters. To make this request, your API credential must have the following [roles](https://docs.adyen.com/development-resources/api-credentials#api-permissions):

https://api.apis.guru/v2/specs/adyen.com/ManagementService/1/merchants?pageSize=1&pageNumber=1

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/adyen.com/ManagementService/1/merchants?pageSize=1&pageNumber=1"
import requests
params = {
    "pageSize": "1",
    "pageNumber": "1"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/adyen.com/ManagementService/1/merchants",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/adyen.com/ManagementService/1/merchants');
url.searchParams.set('pageSize', '1');
url.searchParams.set('pageNumber', '1');

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/ManagementService/1/merchants")
	q := baseURL.Query()
	q.Set("pageSize", "1")
	q.Set("pageNumber", "1")
	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/ManagementService/1/merchants")
uri.query = URI.encode_www_form({
  "pageSize" => "1",
  "pageNumber" => "1"
})

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/ManagementService/1/merchants?" . http_build_query([
    "pageSize" => "1",
    "pageNumber" => "1"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET Get a list of stores

Returns a list of stores. The list is grouped into pages as defined by the query parameters. To make this request, your API credential must have one of the following [roles](https://docs.adyen.com/development-resources/api-credentials#api-permissions): * Management API—Stores read * Management API—

https://api.apis.guru/v2/specs/adyen.com/ManagementService/1/stores?pageSize=1&reference=example&merchantId=example&pageNumber=1

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/adyen.com/ManagementService/1/stores?pageSize=1&reference=example&merchantId=example&pageNumber=1"
import requests
params = {
    "pageSize": "1",
    "reference": "example",
    "merchantId": "example",
    "pageNumber": "1"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/adyen.com/ManagementService/1/stores",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/adyen.com/ManagementService/1/stores');
url.searchParams.set('pageSize', '1');
url.searchParams.set('reference', 'example');
url.searchParams.set('merchantId', 'example');
url.searchParams.set('pageNumber', '1');

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/ManagementService/1/stores")
	q := baseURL.Query()
	q.Set("pageSize", "1")
	q.Set("reference", "example")
	q.Set("merchantId", "example")
	q.Set("pageNumber", "1")
	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/ManagementService/1/stores")
uri.query = URI.encode_www_form({
  "pageSize" => "1",
  "reference" => "example",
  "merchantId" => "example",
  "pageNumber" => "1"
})

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/ManagementService/1/stores?" . http_build_query([
    "pageSize" => "1",
    "reference" => "example",
    "merchantId" => "example",
    "pageNumber" => "1"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));

Postman Setup Guide

Get Postman ↗
  1. See official documentation for authentication and setup.

What can you build with Management API?

Management 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. Management 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?

Open documentation ↗