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

# Get Import Queue Session

Get details about a specific import queue session, including its current status and associated agent.

## Request

#### Path Parameters

<ParamField path="sessionId" type="string" required>
  The session ID returned from the [start import queue](/api-reference/agent/start-import-queue) endpoint
</ParamField>

## Response

<ResponseExample>
  ```json Response - 200 theme={null}
  {
    "sessionId": 3456789,
    "agentId": 1234567,
    "status": "PENDING"
  }
  ```

  ```json Response - 404 theme={null}
  {
    "error": "Session not found"
  }
  ```
</ResponseExample>

<ResponseField name="sessionId" type="number">
  The unique identifier for the import session
</ResponseField>

<ResponseField name="agentId" type="number">
  The ID of the agent this session belongs to
</ResponseField>

<ResponseField name="status" type="string">
  Current status of the import session. Can be one of:

  * `PENDING` - Session is open and accepting companies
  * `PROCESSING` - Session is being processed
  * `COMPLETED` - Session has been successfully processed
</ResponseField>

## Use Cases

This endpoint is useful for:

* Checking the current status of an import session
* Verifying a session exists before adding companies
* Monitoring the progress of your import

## Notes

* You can only access sessions that belong to your team
* Use this endpoint to verify session status before calling [add companies](/api-reference/agent/add-companies)
