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

# Retrieving Action Run Results

## Prerequisites

Before you begin, make sure:

* You have access to a **public Zapier integration**.
* You’ve [registered your app and authenticated](/powered-by-zapier/authentication/methods/user-access-token) to use the API.
* You have at least one **action** configured in your integration, with required fields and sample data tested in the Zapier UI or via the API.

***

To check the outcome of the action, send a `GET` request to [/v2/action-runs/](/powered-by-zapier/api-reference/actions/retrieve-action-run)

### Request Example

```http theme={null}
GET https://api.zapier.com/v2/action-runs/arun_abc123/
Authorization: Bearer YOUR_ACCESS_TOKEN
```

### Possible Statuses

| Status    | Meaning                                    |
| --------- | ------------------------------------------ |
| `queued`  | The run is waiting to be processed.        |
| `running` | The action is currently being executed.    |
| `success` | The run completed successfully.            |
| `error`   | An error occurred while executing the run. |

### Response Example

```json theme={null}
{
  "data": {
    "type": "run",
    "run_id": "arun_abc123",
    "status": "success",
    "results": {
      // Action result data here
    },
    "errors": []
  }
}
```

If successful, the `results` field will contain the result of the action. You can surface this directly to the user or trigger a follow-up process.
