List supported capabilities
curl --request GET \
--url https://platform.swipelux.com/v3/customers/{customerId}/capabilities/supported \
--header 'X-API-Key: <api-key>'import requests
url = "https://platform.swipelux.com/v3/customers/{customerId}/capabilities/supported"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://platform.swipelux.com/v3/customers/{customerId}/capabilities/supported', 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://platform.swipelux.com/v3/customers/{customerId}/capabilities/supported",
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-API-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 := "https://platform.swipelux.com/v3/customers/{customerId}/capabilities/supported"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-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("https://platform.swipelux.com/v3/customers/{customerId}/capabilities/supported")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://platform.swipelux.com/v3/customers/{customerId}/capabilities/supported")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "stablecoin_transfers",
"method": "stablecoin_transfers",
"accountType": null,
"directions": [
"payin",
"payout"
],
"availability": "available",
"eligibility": {
"eligible": true,
"reason": null
},
"institutions": []
},
{
"id": "ach_pooled",
"method": "ach",
"accountType": "pooled",
"directions": [
"payin",
"payout"
],
"availability": "available",
"eligibility": {
"eligible": true,
"reason": null
},
"institutions": [
{
"id": "jpmorgan",
"name": "JPMorgan Chase",
"bic": "CHASUS33",
"countries": [
"US"
],
"isDefault": true
}
]
},
{
"id": "sepa_named",
"method": "sepa",
"accountType": "named",
"directions": [
"payin",
"payout"
],
"availability": "available",
"eligibility": {
"eligible": true,
"reason": null
},
"institutions": [
{
"id": "banking_circle_denmark",
"name": "Banking Circle Denmark",
"bic": "SXPYDKKK",
"countries": [],
"isDefault": true
}
]
},
{
"id": "wire_named",
"method": "wire",
"accountType": "named",
"directions": [
"payin",
"payout"
],
"availability": "available",
"eligibility": {
"eligible": true,
"reason": null
},
"institutions": [
{
"id": "swipelux_usd",
"name": "Swipelux USD",
"bic": null,
"countries": [
"US"
],
"isDefault": false
}
]
},
{
"id": "faster_payments_named",
"method": "faster_payments",
"accountType": "named",
"directions": [
"payin",
"payout"
],
"availability": "available",
"eligibility": {
"eligible": true,
"reason": null
},
"institutions": [
{
"id": "swipelux_gbp",
"name": "Swipelux GBP",
"bic": null,
"countries": [
"GB"
],
"isDefault": true
}
]
},
{
"id": "ipp_named",
"method": "ipp",
"accountType": "named",
"directions": [
"payin",
"payout"
],
"availability": "available",
"eligibility": {
"eligible": true,
"reason": null
},
"institutions": [
{
"id": "swipelux_aed",
"name": "Swipelux AED",
"bic": null,
"countries": [
"AE"
],
"isDefault": true
}
]
},
{
"id": "pix_named",
"method": "pix",
"accountType": "named",
"directions": [
"payin",
"payout"
],
"availability": "disabled",
"eligibility": {
"eligible": true,
"reason": null
},
"institutions": []
}
]
}{
"type": "<string>",
"title": "<string>",
"status": 499,
"code": "<string>",
"detail": "<string>",
"correlationId": "<string>",
"transferId": "<string>",
"retryable": true,
"errors": [
{
"pointer": "<string>",
"code": "<string>",
"message": "<string>"
}
],
"statusReason": {
"code": "sanctions_screening_failed",
"message": "<string>",
"retryable": true
},
"reviewAnswer": "<string>",
"capabilities": [
"<string>"
],
"blockingResources": [
{
"id": "<string>"
}
]
}{
"type": "<string>",
"title": "<string>",
"status": 499,
"code": "<string>",
"detail": "<string>",
"correlationId": "<string>",
"transferId": "<string>",
"retryable": true,
"errors": [
{
"pointer": "<string>",
"code": "<string>",
"message": "<string>"
}
],
"statusReason": {
"code": "sanctions_screening_failed",
"message": "<string>",
"retryable": true
},
"reviewAnswer": "<string>",
"capabilities": [
"<string>"
],
"blockingResources": [
{
"id": "<string>"
}
]
}{
"type": "<string>",
"title": "<string>",
"status": 499,
"code": "<string>",
"detail": "<string>",
"correlationId": "<string>",
"transferId": "<string>",
"retryable": true,
"errors": [
{
"pointer": "<string>",
"code": "<string>",
"message": "<string>"
}
],
"statusReason": {
"code": "sanctions_screening_failed",
"message": "<string>",
"retryable": true
},
"reviewAnswer": "<string>",
"capabilities": [
"<string>"
],
"blockingResources": [
{
"id": "<string>"
}
]
}{
"type": "<string>",
"title": "<string>",
"status": 499,
"code": "<string>",
"detail": "<string>",
"correlationId": "<string>",
"transferId": "<string>",
"retryable": true,
"errors": [
{
"pointer": "<string>",
"code": "<string>",
"message": "<string>"
}
],
"statusReason": {
"code": "sanctions_screening_failed",
"message": "<string>",
"retryable": true
},
"reviewAnswer": "<string>",
"capabilities": [
"<string>"
],
"blockingResources": [
{
"id": "<string>"
}
]
}{
"type": "<string>",
"title": "<string>",
"status": 499,
"code": "<string>",
"detail": "<string>",
"correlationId": "<string>",
"transferId": "<string>",
"retryable": true,
"errors": [
{
"pointer": "<string>",
"code": "<string>",
"message": "<string>"
}
],
"statusReason": {
"code": "sanctions_screening_failed",
"message": "<string>",
"retryable": true
},
"reviewAnswer": "<string>",
"capabilities": [
"<string>"
],
"blockingResources": [
{
"id": "<string>"
}
]
}capabilities
List supported capabilities
Lists every known capability variant for this customer with supported directions, availability, eligibility, and supporting institutions. stablecoin_transfers is always listed; card is omitted for business customers. For available bank-backed capability creation, omitted or empty institutions lists select registry defaults; a non-empty list explicitly overrides defaults.
List supported capabilities
curl --request GET \
--url https://platform.swipelux.com/v3/customers/{customerId}/capabilities/supported \
--header 'X-API-Key: <api-key>'import requests
url = "https://platform.swipelux.com/v3/customers/{customerId}/capabilities/supported"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://platform.swipelux.com/v3/customers/{customerId}/capabilities/supported', 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://platform.swipelux.com/v3/customers/{customerId}/capabilities/supported",
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-API-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 := "https://platform.swipelux.com/v3/customers/{customerId}/capabilities/supported"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-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("https://platform.swipelux.com/v3/customers/{customerId}/capabilities/supported")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://platform.swipelux.com/v3/customers/{customerId}/capabilities/supported")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "stablecoin_transfers",
"method": "stablecoin_transfers",
"accountType": null,
"directions": [
"payin",
"payout"
],
"availability": "available",
"eligibility": {
"eligible": true,
"reason": null
},
"institutions": []
},
{
"id": "ach_pooled",
"method": "ach",
"accountType": "pooled",
"directions": [
"payin",
"payout"
],
"availability": "available",
"eligibility": {
"eligible": true,
"reason": null
},
"institutions": [
{
"id": "jpmorgan",
"name": "JPMorgan Chase",
"bic": "CHASUS33",
"countries": [
"US"
],
"isDefault": true
}
]
},
{
"id": "sepa_named",
"method": "sepa",
"accountType": "named",
"directions": [
"payin",
"payout"
],
"availability": "available",
"eligibility": {
"eligible": true,
"reason": null
},
"institutions": [
{
"id": "banking_circle_denmark",
"name": "Banking Circle Denmark",
"bic": "SXPYDKKK",
"countries": [],
"isDefault": true
}
]
},
{
"id": "wire_named",
"method": "wire",
"accountType": "named",
"directions": [
"payin",
"payout"
],
"availability": "available",
"eligibility": {
"eligible": true,
"reason": null
},
"institutions": [
{
"id": "swipelux_usd",
"name": "Swipelux USD",
"bic": null,
"countries": [
"US"
],
"isDefault": false
}
]
},
{
"id": "faster_payments_named",
"method": "faster_payments",
"accountType": "named",
"directions": [
"payin",
"payout"
],
"availability": "available",
"eligibility": {
"eligible": true,
"reason": null
},
"institutions": [
{
"id": "swipelux_gbp",
"name": "Swipelux GBP",
"bic": null,
"countries": [
"GB"
],
"isDefault": true
}
]
},
{
"id": "ipp_named",
"method": "ipp",
"accountType": "named",
"directions": [
"payin",
"payout"
],
"availability": "available",
"eligibility": {
"eligible": true,
"reason": null
},
"institutions": [
{
"id": "swipelux_aed",
"name": "Swipelux AED",
"bic": null,
"countries": [
"AE"
],
"isDefault": true
}
]
},
{
"id": "pix_named",
"method": "pix",
"accountType": "named",
"directions": [
"payin",
"payout"
],
"availability": "disabled",
"eligibility": {
"eligible": true,
"reason": null
},
"institutions": []
}
]
}{
"type": "<string>",
"title": "<string>",
"status": 499,
"code": "<string>",
"detail": "<string>",
"correlationId": "<string>",
"transferId": "<string>",
"retryable": true,
"errors": [
{
"pointer": "<string>",
"code": "<string>",
"message": "<string>"
}
],
"statusReason": {
"code": "sanctions_screening_failed",
"message": "<string>",
"retryable": true
},
"reviewAnswer": "<string>",
"capabilities": [
"<string>"
],
"blockingResources": [
{
"id": "<string>"
}
]
}{
"type": "<string>",
"title": "<string>",
"status": 499,
"code": "<string>",
"detail": "<string>",
"correlationId": "<string>",
"transferId": "<string>",
"retryable": true,
"errors": [
{
"pointer": "<string>",
"code": "<string>",
"message": "<string>"
}
],
"statusReason": {
"code": "sanctions_screening_failed",
"message": "<string>",
"retryable": true
},
"reviewAnswer": "<string>",
"capabilities": [
"<string>"
],
"blockingResources": [
{
"id": "<string>"
}
]
}{
"type": "<string>",
"title": "<string>",
"status": 499,
"code": "<string>",
"detail": "<string>",
"correlationId": "<string>",
"transferId": "<string>",
"retryable": true,
"errors": [
{
"pointer": "<string>",
"code": "<string>",
"message": "<string>"
}
],
"statusReason": {
"code": "sanctions_screening_failed",
"message": "<string>",
"retryable": true
},
"reviewAnswer": "<string>",
"capabilities": [
"<string>"
],
"blockingResources": [
{
"id": "<string>"
}
]
}{
"type": "<string>",
"title": "<string>",
"status": 499,
"code": "<string>",
"detail": "<string>",
"correlationId": "<string>",
"transferId": "<string>",
"retryable": true,
"errors": [
{
"pointer": "<string>",
"code": "<string>",
"message": "<string>"
}
],
"statusReason": {
"code": "sanctions_screening_failed",
"message": "<string>",
"retryable": true
},
"reviewAnswer": "<string>",
"capabilities": [
"<string>"
],
"blockingResources": [
{
"id": "<string>"
}
]
}{
"type": "<string>",
"title": "<string>",
"status": 499,
"code": "<string>",
"detail": "<string>",
"correlationId": "<string>",
"transferId": "<string>",
"retryable": true,
"errors": [
{
"pointer": "<string>",
"code": "<string>",
"message": "<string>"
}
],
"statusReason": {
"code": "sanctions_screening_failed",
"message": "<string>",
"retryable": true
},
"reviewAnswer": "<string>",
"capabilities": [
"<string>"
],
"blockingResources": [
{
"id": "<string>"
}
]
}Authorizations
Your Swipelux API key. Obtain this from the Swipelux Dashboard.
Path Parameters
Response
Supported capability options returned
Supported capability variants, for example ach_pooled, wire_named, or stablecoin_transfers.
Show child attributes
Show child attributes
Related topics
List capabilitiesList merchant capabilitiesList capability applicationsBusiness document requirementsQuickstart⌘I