Get a provider's verification requirements
curl --request GET \
--url https://api-sb.meld.io/crypto/onramp/{serviceProvider}/requirements \
--header 'Authorization: <api-key>'import requests
url = "https://api-sb.meld.io/crypto/onramp/{serviceProvider}/requirements"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://api-sb.meld.io/crypto/onramp/{serviceProvider}/requirements', 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-sb.meld.io/crypto/onramp/{serviceProvider}/requirements",
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: <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://api-sb.meld.io/crypto/onramp/{serviceProvider}/requirements"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<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://api-sb.meld.io/crypto/onramp/{serviceProvider}/requirements")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-sb.meld.io/crypto/onramp/{serviceProvider}/requirements")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"customerStatus": {
"email": {
"reason": "<string>",
"satisfied": true
},
"phone": {
"reason": "<string>",
"satisfied": true
}
},
"kycRequirements": [
{
"code": "<string>",
"missingFields": [
"<string>"
],
"processStates": [
{
"code": "<string>",
"model": "<string>",
"reason": "<string>",
"status": "<string>",
"submittable": true
}
],
"processes": [
"<string>"
],
"reason": "<string>",
"status": "REQUIRED"
}
],
"legalAgreements": [
{
"region": "<string>",
"type": "<string>",
"url": "<string>"
}
],
"serviceProvider": "<string>",
"verificationRequirements": {
"email": {
"required": true
},
"enforced": true,
"phone": {
"requireLineType": "<string>",
"required": true,
"reverifyWithinDays": 123
}
}
}{
"code": "<string>",
"errors": [
"<string>"
],
"message": "<string>",
"requestId": "<string>",
"serviceProviderDetails": {
"code": "5034",
"message": "Digital currency and blockchain combination is restricted for customer's country"
},
"timestamp": "2026-08-14T09:41:22.482+00:00"
}{
"code": "<string>",
"errors": [
"<string>"
],
"message": "<string>",
"requestId": "<string>",
"serviceProviderDetails": {
"code": "5034",
"message": "Digital currency and blockchain combination is restricted for customer's country"
},
"timestamp": "2026-08-14T09:41:22.482+00:00"
}{
"code": "<string>",
"errors": [
"<string>"
],
"message": "<string>",
"requestId": "<string>",
"serviceProviderDetails": {
"code": "5034",
"message": "Digital currency and blockchain combination is restricted for customer's country"
},
"timestamp": "2026-08-14T09:41:22.482+00:00"
}{
"code": "<string>",
"errors": [
"<string>"
],
"message": "<string>",
"requestId": "<string>",
"serviceProviderDetails": {
"code": "5034",
"message": "Digital currency and blockchain combination is restricted for customer's country"
},
"timestamp": "2026-08-14T09:41:22.482+00:00"
}Headless
Get a provider's verification requirements
Returns the provider’s customer-verification requirements and legal agreements. Pass customerId to additionally get the customer’s current (advisory) per-field verification status. Pass the order you intend to create — payment method, amount and corridor — to additionally get the provider’s own outstanding KYC details: those are jurisdiction-, amount- and method-dependent, so they can only be reported against a concrete intent.
GET
/
crypto
/
onramp
/
{serviceProvider}
/
requirements
Get a provider's verification requirements
curl --request GET \
--url https://api-sb.meld.io/crypto/onramp/{serviceProvider}/requirements \
--header 'Authorization: <api-key>'import requests
url = "https://api-sb.meld.io/crypto/onramp/{serviceProvider}/requirements"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://api-sb.meld.io/crypto/onramp/{serviceProvider}/requirements', 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-sb.meld.io/crypto/onramp/{serviceProvider}/requirements",
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: <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://api-sb.meld.io/crypto/onramp/{serviceProvider}/requirements"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<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://api-sb.meld.io/crypto/onramp/{serviceProvider}/requirements")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-sb.meld.io/crypto/onramp/{serviceProvider}/requirements")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"customerStatus": {
"email": {
"reason": "<string>",
"satisfied": true
},
"phone": {
"reason": "<string>",
"satisfied": true
}
},
"kycRequirements": [
{
"code": "<string>",
"missingFields": [
"<string>"
],
"processStates": [
{
"code": "<string>",
"model": "<string>",
"reason": "<string>",
"status": "<string>",
"submittable": true
}
],
"processes": [
"<string>"
],
"reason": "<string>",
"status": "REQUIRED"
}
],
"legalAgreements": [
{
"region": "<string>",
"type": "<string>",
"url": "<string>"
}
],
"serviceProvider": "<string>",
"verificationRequirements": {
"email": {
"required": true
},
"enforced": true,
"phone": {
"requireLineType": "<string>",
"required": true,
"reverifyWithinDays": 123
}
}
}{
"code": "<string>",
"errors": [
"<string>"
],
"message": "<string>",
"requestId": "<string>",
"serviceProviderDetails": {
"code": "5034",
"message": "Digital currency and blockchain combination is restricted for customer's country"
},
"timestamp": "2026-08-14T09:41:22.482+00:00"
}{
"code": "<string>",
"errors": [
"<string>"
],
"message": "<string>",
"requestId": "<string>",
"serviceProviderDetails": {
"code": "5034",
"message": "Digital currency and blockchain combination is restricted for customer's country"
},
"timestamp": "2026-08-14T09:41:22.482+00:00"
}{
"code": "<string>",
"errors": [
"<string>"
],
"message": "<string>",
"requestId": "<string>",
"serviceProviderDetails": {
"code": "5034",
"message": "Digital currency and blockchain combination is restricted for customer's country"
},
"timestamp": "2026-08-14T09:41:22.482+00:00"
}{
"code": "<string>",
"errors": [
"<string>"
],
"message": "<string>",
"requestId": "<string>",
"serviceProviderDetails": {
"code": "5034",
"message": "Digital currency and blockchain combination is restricted for customer's country"
},
"timestamp": "2026-08-14T09:41:22.482+00:00"
}Authorizations
Headers
Dated API version to use for this request, e.g. 2026-02-03.
Example:
"2026-02-03"