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

# Transaction status

> Look up a single transaction by transaction_code.

<ParamField path="currency_code" type="string">
  Currency namespace for the transaction store (e.g. `KES`, `UGX`).
</ParamField>

<ParamField body="transaction_code" type="string" required>
  Transaction code returned when the payment was created.
</ParamField>

Returns a [transaction resource](/api-reference/overview#transaction-object).

<RequestExample>
  ```bash theme={null}
  curl -X POST "{{base_url}}/v1/status/KES" \
    -H "x-api-key: YOUR_CONSUMER_KEY" \
    -H "Content-Type: application/json" \
    -d '{"transaction_code":"a1b2c3d4-e5f6-7890-abcd-ef1234567890"}'
  ```
</RequestExample>
