Delegate Signer
Add Delegate Signer Orderly Key
Partner Support
User Flows
General API
- Builder Info
- System Info
- USDC Faucet
User API
- Registration
- Key Management
- Account/User Info
- Account Notifications
- Account Config
- Delegate Signer
Trading API
- Order Management
- Liquidations
- Assets/Withdraw/Settle PnL
- Positions
- Funding
Rewards API
- Trading Rewards
- Market Making Rewards
Staking & Valor API
- Staking
- Valor
Builder API
- User Data
- Trading Campaigns
- Fee Setting
- Referral Program
Market Data API
- TradingView
- Funding Rates
- Market Info
Websocket API
- Introduction
- PING/PONG
- Authentication
- Error Response
- Public Market Data
- Private User Data
Delegate Signer
Add Delegate Signer Orderly Key
Limit: 1 requests per second
POST /v1/delegate_orderly_key
POST
/
v1
/
delegate_orderly_key
curl --request POST \
--url https://api.orderly.org/v1/delegate_orderly_key \
--header 'Content-Type: application/json' \
--data '{
"message": {
"delegateContract": "<string>",
"brokerId": "<string>",
"chainId": 123,
"orderlyKey": "<string>",
"scope": "<string>",
"timestamp": 123,
"expiration": 123
},
"signature": "<string>",
"userAddress": "<string>"
}'
{
"success": true,
"timestamp": 1702989203989,
"data": {
"id": 123,
"orderly_key": "ed25519:FRXntsPJBCy6dzKv9WPw4eYSw3rKU9Npz3T6UmvvJc9Z"
}
}
Body
application/json
Response
200 - application/json
OK
The response is of type object
.
curl --request POST \
--url https://api.orderly.org/v1/delegate_orderly_key \
--header 'Content-Type: application/json' \
--data '{
"message": {
"delegateContract": "<string>",
"brokerId": "<string>",
"chainId": 123,
"orderlyKey": "<string>",
"scope": "<string>",
"timestamp": 123,
"expiration": 123
},
"signature": "<string>",
"userAddress": "<string>"
}'
{
"success": true,
"timestamp": 1702989203989,
"data": {
"id": 123,
"orderly_key": "ed25519:FRXntsPJBCy6dzKv9WPw4eYSw3rKU9Npz3T6UmvvJc9Z"
}
}