POST
/
v1
/
orderly_key
curl --request POST \
  --url https://api-evm.orderly.network/v1/orderly_key \
  --header 'Content-Type: application/json' \
  --data '{
  "message": {
    "brokerId": "<string>",
    "chainId": 123,
    "orderlyKey": "<string>",
    "scope": "<string>",
    "timestamp": 123,
    "expiration": 123
  },
  "signature": "<string>",
  "userAddress": "<string>",
  "tag": "<string>"
}'
{
  "success": true,
  "timestamp": 1702989203989,
  "data": {
    "id": 123,
    "orderly_key": "ed25519:FRXntsPJBCy6dzKv9WPw4eYSw3rKU9Npz3T6UmvvJc9Z"
  }
}

Body

application/json
message
object
required

Message object containing the message that is signed by the wallet owner

signature
string
required

The signature generated by signing the message object via EIP-712

userAddress
string
required

The address of the wallet signing the message object via EIP-712

tag
string
required

An optional tag of string values。

Response

200 - application/json
success
boolean
required
timestamp
integer
data
object
required