Skip to main content
GET
/
v1
/
perps
/
actions
/
{actionId}
curl https://api.yield.xyz/v1/perps/actions/action_123 \
  -H "x-api-key: your_api_key"

Documentation Index

Fetch the complete documentation index at: https://yieldxyz.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Get Action

Returns details of a specific trading action.
curl https://api.yield.xyz/v1/perps/actions/action_123 \
  -H "x-api-key: your_api_key"

Response

{
  "id": "action_123",
  "status": "completed",
  "type": "OPEN_POSITION",
  "transactions": [
    {
      "id": "tx_456",
      "status": "confirmed",
      "hash": "0xabc..."
    }
  ]
}