REST API v2.5.1
APIReference
Enterprise-grade REST API with bank-level security and 99.99% SLA. All endpoints support JSON and Protocol Buffers.
Latency
45ms
p95 Global
Uptime
99.99%
SLA Guarantee
Security
TLS 1.3
Encryption
Regions
12
Global Edge
Core Endpoints
Authentication Required
POST
/v1/paymentsCreate Payment
Initiate a new payment transaction
1000/hour
Bearer Token
GET
/v1/payments/{id}Retrieve Payment
Get payment status and details
5000/hour
Bearer Token
POST
/v1/payoutsCreate Payout
Send funds to external accounts
500/hour
Bearer Token + IP Whitelist
GET
/v1/transactionsList Transactions
Retrieve filtered transaction history
2000/hour
Bearer Token
POST
/v1/webhooksCreate Webhook
Configure event notifications
100/hour
Bearer Token
PUT
/v1/accounts/{id}Update Account
Modify account settings
300/hour
Bearer Token + MFA
Example Request
curl -X POST https://api.edgesenterprise.com/v1/payments \
-H "Authorization: Bearer sk_live_..." \
-H "Content-Type: application/json" \
-d '{
"amount": 10000,
"currency": "USD",
"customer": {
"email": "enterprise@example.com",
"reference": "txn_2024_001"
},
"metadata": {
"department": "finance",
"project": "Q4-2024"
}
}'