Sign in

Place crypto exchange order

documented

Create a crypto exchange order.

POST /exchange/ordersOrdersno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://api.revolut.com/api/1.0/crypto-exchange/orders" \
  -X POST \
  -H "X-Revx-Timestamp: {{$timestamp}}" \
  -H "X-Revx-Signature: {{$signature}}" \
  -H "X-Revx-API-Key: {{REVOLUT_API_KEY}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"client_order_id": "{{$client_order_id}}", "symbol": "{{$symbol}}", "side": "{{$side}}", "order_configuration": {"limit": {"base_size": "{{$base_size}}", "price": "{{$price}}"}}, "execution_instructions": []}'