Create a ramp widget session for checkout
curl --request POST \
--url https://api.agg.market/ramp/session \
--header 'Content-Type: application/json' \
--header 'x-app-id: <api-key>' \
--data '
{
"sourceAmount": "<string>",
"sourceCurrencyCode": "<string>",
"destinationCurrencyCode": "<string>",
"serviceProvider": "<string>",
"walletAddress": "<string>",
"redirectUrl": "<string>"
}
'import requests
url = "https://api.agg.market/ramp/session"
payload = {
"sourceAmount": "<string>",
"sourceCurrencyCode": "<string>",
"destinationCurrencyCode": "<string>",
"serviceProvider": "<string>",
"walletAddress": "<string>",
"redirectUrl": "<string>"
}
headers = {
"x-app-id": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-app-id': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
sourceAmount: '<string>',
sourceCurrencyCode: '<string>',
destinationCurrencyCode: '<string>',
serviceProvider: '<string>',
walletAddress: '<string>',
redirectUrl: '<string>'
})
};
fetch('https://api.agg.market/ramp/session', 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.agg.market/ramp/session",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'sourceAmount' => '<string>',
'sourceCurrencyCode' => '<string>',
'destinationCurrencyCode' => '<string>',
'serviceProvider' => '<string>',
'walletAddress' => '<string>',
'redirectUrl' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-app-id: <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"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.agg.market/ramp/session"
payload := strings.NewReader("{\n \"sourceAmount\": \"<string>\",\n \"sourceCurrencyCode\": \"<string>\",\n \"destinationCurrencyCode\": \"<string>\",\n \"serviceProvider\": \"<string>\",\n \"walletAddress\": \"<string>\",\n \"redirectUrl\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-app-id", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.agg.market/ramp/session")
.header("x-app-id", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"sourceAmount\": \"<string>\",\n \"sourceCurrencyCode\": \"<string>\",\n \"destinationCurrencyCode\": \"<string>\",\n \"serviceProvider\": \"<string>\",\n \"walletAddress\": \"<string>\",\n \"redirectUrl\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.agg.market/ramp/session")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-app-id"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"sourceAmount\": \"<string>\",\n \"sourceCurrencyCode\": \"<string>\",\n \"destinationCurrencyCode\": \"<string>\",\n \"serviceProvider\": \"<string>\",\n \"walletAddress\": \"<string>\",\n \"redirectUrl\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"id": "<string>",
"token": "<string>",
"widgetUrl": "<string>",
"serviceProviderWidgetUrl": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}Ramp
Create a ramp widget session for checkout
POST
/
ramp
/
session
Create a ramp widget session for checkout
curl --request POST \
--url https://api.agg.market/ramp/session \
--header 'Content-Type: application/json' \
--header 'x-app-id: <api-key>' \
--data '
{
"sourceAmount": "<string>",
"sourceCurrencyCode": "<string>",
"destinationCurrencyCode": "<string>",
"serviceProvider": "<string>",
"walletAddress": "<string>",
"redirectUrl": "<string>"
}
'import requests
url = "https://api.agg.market/ramp/session"
payload = {
"sourceAmount": "<string>",
"sourceCurrencyCode": "<string>",
"destinationCurrencyCode": "<string>",
"serviceProvider": "<string>",
"walletAddress": "<string>",
"redirectUrl": "<string>"
}
headers = {
"x-app-id": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-app-id': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
sourceAmount: '<string>',
sourceCurrencyCode: '<string>',
destinationCurrencyCode: '<string>',
serviceProvider: '<string>',
walletAddress: '<string>',
redirectUrl: '<string>'
})
};
fetch('https://api.agg.market/ramp/session', 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.agg.market/ramp/session",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'sourceAmount' => '<string>',
'sourceCurrencyCode' => '<string>',
'destinationCurrencyCode' => '<string>',
'serviceProvider' => '<string>',
'walletAddress' => '<string>',
'redirectUrl' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-app-id: <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"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.agg.market/ramp/session"
payload := strings.NewReader("{\n \"sourceAmount\": \"<string>\",\n \"sourceCurrencyCode\": \"<string>\",\n \"destinationCurrencyCode\": \"<string>\",\n \"serviceProvider\": \"<string>\",\n \"walletAddress\": \"<string>\",\n \"redirectUrl\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-app-id", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.agg.market/ramp/session")
.header("x-app-id", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"sourceAmount\": \"<string>\",\n \"sourceCurrencyCode\": \"<string>\",\n \"destinationCurrencyCode\": \"<string>\",\n \"serviceProvider\": \"<string>\",\n \"walletAddress\": \"<string>\",\n \"redirectUrl\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.agg.market/ramp/session")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-app-id"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"sourceAmount\": \"<string>\",\n \"sourceCurrencyCode\": \"<string>\",\n \"destinationCurrencyCode\": \"<string>\",\n \"serviceProvider\": \"<string>\",\n \"walletAddress\": \"<string>\",\n \"redirectUrl\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"id": "<string>",
"token": "<string>",
"widgetUrl": "<string>",
"serviceProviderWidgetUrl": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}Authorizations
Your application ID. Required for all app-tier and user-tier routes.
Body
application/json
⌘I