# Payout Transaction Statuses

When a payout is initiated, it moves through a defined set of statuses that reflect the current state of the transaction. Use the status code returned in the payout response to determine the outcome and take appropriate action in your integration.

### Status Reference

| Code | Label   | Description                              |
| ---- | ------- | ---------------------------------------- |
| `0`  | Pending | The payout is currently being processed. |
| `1`  | Success | The payout was completed successfully.   |
| `-1` | Failed  | The payout failed.                       |

### Polling for Status Updates

If a payout is returned with a `Pending (0)` status, you can:

* Poll the payout status API at regular intervals (recommended: every 5–10 seconds), or
* Use **webhooks** to receive real-time payout status updates without repeatedly calling the API.

{% hint style="info" %}
Webhooks are the recommended approach for production integrations to avoid excessive API polling.\
Refer to the [**Webhook**](/developer-guides/api-reference/payout/webhooks.md) section for more details on configuring and handling webhook events
{% endhint %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.rocketfuel.inc/developer-guides/api-reference/payout/payout-transaction-statuses.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
