API мерчантов
- Создать запрос
POST /api/merchant/payment-requests
- Статус мерчанта
GET /api/merchant/payment-requests/{reference}/status
- Публичный статус
GET /api/payments/{reference}/status
- Отправить tx hash
POST /api/merchant/payment-requests/{reference}/confirmations
- Webhook endpoint
POST /api/merchant/webhook-endpoints
- Webhook event
POST /api/merchant/webhook-events
Метаданные платежа
- Сеть
- FTY on Ethereum mainnet
- Chain ID
- 137
- Settlement currency
- FTY
- Customer preferences
- FTY, ETH, BTC, USDC, USDT
- Расчет
- Furety Treasury Safe или мерчант-configured approved кошелек
- Auth
X-Furety-Api-Key
cURL Example
POST /api/merchant/payment-requests
X-Furety-Api-Key: fpk_...
{
"title": "Merchant checkout",
"fty_amount": "25.5",
"preferred_customer_currency": "USDC",
"customer_email": "customer@example.com"
}
JavaScript Example
await fetch('/api/merchant/payment-requests', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'X-Furety-Api-Key': merchantApiKey
},
body: JSON.stringify({
title: 'Merchant checkout',
fty_amount: '25.5',
preferred_customer_currency: 'USDC'
})
});
PHP Example
$response = Http::withHeaders([
'X-Furety-Api-Key' => $merchantApiKey,
])->post('https://furety.com/api/merchant/payment-requests', [
'title' => 'Merchant checkout',
'fty_amount' => '25.5',
'preferred_customer_currency' => 'USDC',
]);
Правила безопасности
API never asks для private keys, seed phrases, card details, bank credentials, или raw webhook signing secrets. Raw API keys are shown only once at creation и stored as hashes.
preferred_customer_currency accepts FTY, ETH, BTC, USDC, и USDT. FTY remains the расчеты and услуга полезность currency unless a supported платеж processor flow is explicitly enabled.
Ключи API готовы к ограничениям скорости и доступны только утвержденным проверенным мерчантам. Значения подписи webhook должны храниться в Google Secret Manager только как ссылки.
FTY is a полезность платеж currency. Furety does not offer staking, кредитование, доходность, гарантированная доходностьs, или обещания биржевой цены.