Configure client settings
curl --request POST \
--url https://v1.orchestrator.rhinestone.dev/deposit-processor/setup \
--header 'Content-Type: application/json' \
--data '
{
"params": {
"webhookUrl": "<string>",
"webhookSecret": "<string>",
"sponsorship": {},
"depositWhitelist": {
"eip155:8453": [
{
"token": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"minAmount": "1000000",
"maxAmount": "5000000000"
}
]
},
"maxPriceDeviationBps": 200,
"minDepositUsd": 1
}
}
'import requests
url = "https://v1.orchestrator.rhinestone.dev/deposit-processor/setup"
payload = { "params": {
"webhookUrl": "<string>",
"webhookSecret": "<string>",
"sponsorship": {},
"depositWhitelist": { "eip155:8453": [
{
"token": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"minAmount": "1000000",
"maxAmount": "5000000000"
}
] },
"maxPriceDeviationBps": 200,
"minDepositUsd": 1
} }
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
params: {
webhookUrl: '<string>',
webhookSecret: '<string>',
sponsorship: {},
depositWhitelist: {
'eip155:8453': [
{
token: '0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913',
minAmount: '1000000',
maxAmount: '5000000000'
}
]
},
maxPriceDeviationBps: 200,
minDepositUsd: 1
}
})
};
fetch('https://v1.orchestrator.rhinestone.dev/deposit-processor/setup', 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://v1.orchestrator.rhinestone.dev/deposit-processor/setup",
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([
'params' => [
'webhookUrl' => '<string>',
'webhookSecret' => '<string>',
'sponsorship' => [
],
'depositWhitelist' => [
'eip155:8453' => [
[
'token' => '0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913',
'minAmount' => '1000000',
'maxAmount' => '5000000000'
]
]
],
'maxPriceDeviationBps' => 200,
'minDepositUsd' => 1
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$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://v1.orchestrator.rhinestone.dev/deposit-processor/setup"
payload := strings.NewReader("{\n \"params\": {\n \"webhookUrl\": \"<string>\",\n \"webhookSecret\": \"<string>\",\n \"sponsorship\": {},\n \"depositWhitelist\": {\n \"eip155:8453\": [\n {\n \"token\": \"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913\",\n \"minAmount\": \"1000000\",\n \"maxAmount\": \"5000000000\"\n }\n ]\n },\n \"maxPriceDeviationBps\": 200,\n \"minDepositUsd\": 1\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
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://v1.orchestrator.rhinestone.dev/deposit-processor/setup")
.header("Content-Type", "application/json")
.body("{\n \"params\": {\n \"webhookUrl\": \"<string>\",\n \"webhookSecret\": \"<string>\",\n \"sponsorship\": {},\n \"depositWhitelist\": {\n \"eip155:8453\": [\n {\n \"token\": \"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913\",\n \"minAmount\": \"1000000\",\n \"maxAmount\": \"5000000000\"\n }\n ]\n },\n \"maxPriceDeviationBps\": 200,\n \"minDepositUsd\": 1\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://v1.orchestrator.rhinestone.dev/deposit-processor/setup")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"params\": {\n \"webhookUrl\": \"<string>\",\n \"webhookSecret\": \"<string>\",\n \"sponsorship\": {},\n \"depositWhitelist\": {\n \"eip155:8453\": [\n {\n \"token\": \"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913\",\n \"minAmount\": \"1000000\",\n \"maxAmount\": \"5000000000\"\n }\n ]\n },\n \"maxPriceDeviationBps\": 200,\n \"minDepositUsd\": 1\n }\n}"
response = http.request(request)
puts response.read_body{
"message": "<string>"
}{
"error": "<string>",
"details": [
{
"message": "<string>",
"path": [
"<string>"
],
"code": "<string>"
}
]
}{
"error": "<string>",
"details": [
{
"message": "<string>",
"path": [
"<string>"
],
"code": "<string>"
}
]
}Clients
Configure client settings
Configure webhook URL, secret, sponsorship rules, and source-token whitelist rules for a client. Deposit whitelist keys must use CAIP-2 chain identifiers (for example “eip155:8453”).
POST
/
setup
Configure client settings
curl --request POST \
--url https://v1.orchestrator.rhinestone.dev/deposit-processor/setup \
--header 'Content-Type: application/json' \
--data '
{
"params": {
"webhookUrl": "<string>",
"webhookSecret": "<string>",
"sponsorship": {},
"depositWhitelist": {
"eip155:8453": [
{
"token": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"minAmount": "1000000",
"maxAmount": "5000000000"
}
]
},
"maxPriceDeviationBps": 200,
"minDepositUsd": 1
}
}
'import requests
url = "https://v1.orchestrator.rhinestone.dev/deposit-processor/setup"
payload = { "params": {
"webhookUrl": "<string>",
"webhookSecret": "<string>",
"sponsorship": {},
"depositWhitelist": { "eip155:8453": [
{
"token": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"minAmount": "1000000",
"maxAmount": "5000000000"
}
] },
"maxPriceDeviationBps": 200,
"minDepositUsd": 1
} }
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
params: {
webhookUrl: '<string>',
webhookSecret: '<string>',
sponsorship: {},
depositWhitelist: {
'eip155:8453': [
{
token: '0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913',
minAmount: '1000000',
maxAmount: '5000000000'
}
]
},
maxPriceDeviationBps: 200,
minDepositUsd: 1
}
})
};
fetch('https://v1.orchestrator.rhinestone.dev/deposit-processor/setup', 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://v1.orchestrator.rhinestone.dev/deposit-processor/setup",
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([
'params' => [
'webhookUrl' => '<string>',
'webhookSecret' => '<string>',
'sponsorship' => [
],
'depositWhitelist' => [
'eip155:8453' => [
[
'token' => '0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913',
'minAmount' => '1000000',
'maxAmount' => '5000000000'
]
]
],
'maxPriceDeviationBps' => 200,
'minDepositUsd' => 1
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$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://v1.orchestrator.rhinestone.dev/deposit-processor/setup"
payload := strings.NewReader("{\n \"params\": {\n \"webhookUrl\": \"<string>\",\n \"webhookSecret\": \"<string>\",\n \"sponsorship\": {},\n \"depositWhitelist\": {\n \"eip155:8453\": [\n {\n \"token\": \"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913\",\n \"minAmount\": \"1000000\",\n \"maxAmount\": \"5000000000\"\n }\n ]\n },\n \"maxPriceDeviationBps\": 200,\n \"minDepositUsd\": 1\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
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://v1.orchestrator.rhinestone.dev/deposit-processor/setup")
.header("Content-Type", "application/json")
.body("{\n \"params\": {\n \"webhookUrl\": \"<string>\",\n \"webhookSecret\": \"<string>\",\n \"sponsorship\": {},\n \"depositWhitelist\": {\n \"eip155:8453\": [\n {\n \"token\": \"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913\",\n \"minAmount\": \"1000000\",\n \"maxAmount\": \"5000000000\"\n }\n ]\n },\n \"maxPriceDeviationBps\": 200,\n \"minDepositUsd\": 1\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://v1.orchestrator.rhinestone.dev/deposit-processor/setup")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"params\": {\n \"webhookUrl\": \"<string>\",\n \"webhookSecret\": \"<string>\",\n \"sponsorship\": {},\n \"depositWhitelist\": {\n \"eip155:8453\": [\n {\n \"token\": \"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913\",\n \"minAmount\": \"1000000\",\n \"maxAmount\": \"5000000000\"\n }\n ]\n },\n \"maxPriceDeviationBps\": 200,\n \"minDepositUsd\": 1\n }\n}"
response = http.request(request)
puts response.read_body{
"message": "<string>"
}{
"error": "<string>",
"details": [
{
"message": "<string>",
"path": [
"<string>"
],
"code": "<string>"
}
]
}{
"error": "<string>",
"details": [
{
"message": "<string>",
"path": [
"<string>"
],
"code": "<string>"
}
]
}Headers
API key for authentication (omit when sending Authorization)
Example:
"your-api-key"
Bearer platform token (e.g. forwarded by user-service). Takes precedence over x-api-key when both are present.
Example:
"Bearer eyJhbGciOi..."
API version identifier (e.g. "2026-04.amazon"). Optional today, will become required in a future release.
Pattern:
^\d{4}-\d{2}\.[a-z0-9]+$Example:
"2026-04.amazon"
Body
application/json
Show child attributes
Show child attributes
Response
Client updated successfully
Was this page helpful?
⌘I