> ## Documentation Index
> Fetch the complete documentation index at: https://yieldxyz.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Submit Transaction

> Submit a signed transaction hash

## Submit Transaction

Submits a signed transaction hash for tracking.

<RequestExample>
  ```bash cURL theme={null}
  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..."
    }'
  ```
</RequestExample>

## Response

```json theme={null}
{
  "id": "tx_456",
  "status": "submitted",
  "hash": "0xabc123..."
}
```
