Skip to main content
PUT
/
v1
/
perps
/
transactions
/
{transactionId}
/
submit-hash
curl -X PUT https://api.yield.xyz/v1/perps/transactions/tx_456/submit-hash \
  -H "x-api-key: your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "hash": "0xabc123..."
  }'

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.

Submit Transaction

Submits a signed transaction hash for tracking.
curl -X PUT https://api.yield.xyz/v1/perps/transactions/tx_456/submit-hash \
  -H "x-api-key: your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "hash": "0xabc123..."
  }'

Response

{
  "id": "tx_456",
  "status": "submitted",
  "hash": "0xabc123..."
}