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

# Queued Requests

> Check the status and response of queued API requests

## Overview

This method allows you to retrieve the status and response of a queued API request using its UUID.

<Warning>
  This method is primarily used with V2 API. In V1, responses are returned synchronously. Consider upgrading to V2 for improved reliability with the queued request system.
</Warning>

## Get Queued Request

Retrieve the status and response of a queued API request using its UUID.

<Tabs>
  <Tab title="Basic Usage" icon="code">
    ```php theme={null}
    use Hypersender\Hypersender;

    $response = Hypersender::whatsapp()
      ->getQueuedRequest(
          uuid: 'a0816120-7e37-4e8b-8cf3-92deb2cdc133',
      );
    ```
  </Tab>

  <Tab title="Parameters" icon="sliders">
    | Parameter | Type   | Required | Description                                |
    | --------- | ------ | -------- | ------------------------------------------ |
    | uuid      | string | yes      | The UUID of the queued request to retrieve |
  </Tab>
</Tabs>
