curl --request GET \
--url https://api.zopay.cash/connect/v1/capabilities \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.zopay.cash/connect/v1/capabilities"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.zopay.cash/connect/v1/capabilities', 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.zopay.cash/connect/v1/capabilities",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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.zopay.cash/connect/v1/capabilities"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.zopay.cash/connect/v1/capabilities")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.zopay.cash/connect/v1/capabilities")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"default_fiat": "<string>",
"assets": [
{
"symbol": "<string>",
"name": "<string>",
"networks": [
{
"id": "<string>",
"name": "<string>",
"deposit": {
"enabled": true
},
"payout": {
"enabled": true,
"estimated_fee_usd": "0.50"
},
"fee_warning": "<string>"
}
],
"convertible_to": [
"<string>"
]
}
],
"ramps": [
{
"symbol": "<string>",
"name": "<string>",
"networks": [
{
"id": "<string>",
"name": "<string>",
"deposit": {
"enabled": true
},
"payout": {
"enabled": true,
"estimated_fee_usd": "0.50"
},
"fee_warning": "<string>"
}
],
"convertible_to": [
"<string>"
]
}
],
"fiat_currencies": [
"<string>"
]
}{
"error": {
"type": "<string>",
"code": "<string>",
"message": "<string>",
"doc_url": "<string>",
"param": "currencies"
}
}{
"error": {
"type": "<string>",
"code": "<string>",
"message": "<string>",
"doc_url": "<string>",
"param": "currencies"
}
}{
"error": {
"type": "<string>",
"code": "<string>",
"message": "<string>",
"doc_url": "<string>",
"param": "currencies"
}
}{
"error": {
"type": "<string>",
"code": "<string>",
"message": "<string>",
"doc_url": "<string>",
"param": "currencies"
}
}{
"error": {
"type": "<string>",
"code": "<string>",
"message": "<string>",
"doc_url": "<string>",
"param": "currencies"
}
}{
"error": {
"type": "<string>",
"code": "<string>",
"message": "<string>",
"doc_url": "<string>",
"param": "currencies"
}
}{
"error": {
"type": "<string>",
"code": "<string>",
"message": "<string>",
"doc_url": "<string>",
"param": "currencies"
}
}{
"error": {
"type": "<string>",
"code": "<string>",
"message": "<string>",
"doc_url": "<string>",
"param": "currencies"
}
}{
"error": {
"type": "<string>",
"code": "<string>",
"message": "<string>",
"doc_url": "<string>",
"param": "currencies"
}
}Get Capabilities
GET /capabilities
curl --request GET \
--url https://api.zopay.cash/connect/v1/capabilities \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.zopay.cash/connect/v1/capabilities"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.zopay.cash/connect/v1/capabilities', 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.zopay.cash/connect/v1/capabilities",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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.zopay.cash/connect/v1/capabilities"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.zopay.cash/connect/v1/capabilities")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.zopay.cash/connect/v1/capabilities")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"default_fiat": "<string>",
"assets": [
{
"symbol": "<string>",
"name": "<string>",
"networks": [
{
"id": "<string>",
"name": "<string>",
"deposit": {
"enabled": true
},
"payout": {
"enabled": true,
"estimated_fee_usd": "0.50"
},
"fee_warning": "<string>"
}
],
"convertible_to": [
"<string>"
]
}
],
"ramps": [
{
"symbol": "<string>",
"name": "<string>",
"networks": [
{
"id": "<string>",
"name": "<string>",
"deposit": {
"enabled": true
},
"payout": {
"enabled": true,
"estimated_fee_usd": "0.50"
},
"fee_warning": "<string>"
}
],
"convertible_to": [
"<string>"
]
}
],
"fiat_currencies": [
"<string>"
]
}{
"error": {
"type": "<string>",
"code": "<string>",
"message": "<string>",
"doc_url": "<string>",
"param": "currencies"
}
}{
"error": {
"type": "<string>",
"code": "<string>",
"message": "<string>",
"doc_url": "<string>",
"param": "currencies"
}
}{
"error": {
"type": "<string>",
"code": "<string>",
"message": "<string>",
"doc_url": "<string>",
"param": "currencies"
}
}{
"error": {
"type": "<string>",
"code": "<string>",
"message": "<string>",
"doc_url": "<string>",
"param": "currencies"
}
}{
"error": {
"type": "<string>",
"code": "<string>",
"message": "<string>",
"doc_url": "<string>",
"param": "currencies"
}
}{
"error": {
"type": "<string>",
"code": "<string>",
"message": "<string>",
"doc_url": "<string>",
"param": "currencies"
}
}{
"error": {
"type": "<string>",
"code": "<string>",
"message": "<string>",
"doc_url": "<string>",
"param": "currencies"
}
}{
"error": {
"type": "<string>",
"code": "<string>",
"message": "<string>",
"doc_url": "<string>",
"param": "currencies"
}
}{
"error": {
"type": "<string>",
"code": "<string>",
"message": "<string>",
"doc_url": "<string>",
"param": "currencies"
}
}Authorizations
Paste your Connect API key (sk_live_… for production, sk_test_… for sandbox) without the Bearer prefix. Mint and rotate keys from the admin panel.
Query Parameters
Reserved for future expansion. Accepted today as a forward-compat surface but does not currently add fields to the response.
Response
Successful Response
Top-level response for GET /connect/v1/capabilities.
Single ISO-4217 code: which fiat to default to in partner UI when no per-user preference is set. Always one of the codes in fiat_currencies.
"USD"
Enabled (asset, network) routes for the calling org. Drives partner UI surfaces (network pickers, fee warnings, deposit-screen route listings).
Show child attributes
Show child attributes
Fiat-on/off-ramp routes. Empty for Phase 1a; populated when the ramps surface ships. Kept in the response today so partner code can read the key without a presence check.
Show child attributes
Show child attributes
ISO-4217 codes for the fiat currencies the org has enabled. Drives which valuations show up on /balances.
["USD"]