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

# Fetching Transaction Receipts

To fetch a transaction receipt for an arbitrary transaction that was dispatched via the transactions API, call the `/GetMetaTxnReceipt` endpoint.
The `metaTxID` is the `txnHash` from the response of the `/SendMetaTxn` endpoint.

<CodeGroup>
  ```sh cURL theme={null}
  curl -s -X POST -H 'Content-Type: application/json' \
    -d '{"metaTxID":"462de2756e45c93698b89ada5ba4a3c9d1bfb9fb354ad2e7f36f1a9fefbc550b"}' \
    https://polygon-relayer.sequence.app/rpc/Relayer/GetMetaTxnReceipt | jq

  {
    "receipt": {
      "id": "462de2756e45c93698b89ada5ba4a3c9d1bfb9fb354ad2e7f36f1a9fefbc550b",
      "status": "SUCCEEDED",
      "revertReason": null,
      "index": 0,
      "logs": []
    }
  }

  ...
  ```

  ```typescript TypeScript theme={null}
  const { receipt } = await session.account.relayer(config.chainId).wait('462de2756e45c93698b89ada5ba4a3c9d1bfb9fb354ad2e7f36f1a9fefbc550b')
  ```

  ```go Go theme={null}
  status, receipt, _ := relayer.Wait(ctx, "462de2756e45c93698b89ada5ba4a3c9d1bfb9fb354ad2e7f36f1a9fefbc550b")
  ```
</CodeGroup>
