Skip to main content
POST
/
v2
/
delta
/
orders
/
cancel
Cancel one or more Delta V2 orders
curl --request POST \
  --url https://api.velora.xyz/v2/delta/orders/cancel \
  --header 'Content-Type: application/json' \
  --data '
{
  "orderIds": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ],
  "signature": "<string>"
}
'
{
  "cancelled": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ]
}

Body

application/json
orderIds
string<uuid>[]
required
Required array length: 1 - 100 elements
signature
string
required

EIP-712 signature over the cancellation payload.

Response

Cancellation accepted.

cancelled
string<uuid>[]
Last modified on June 11, 2026