---
title: "List Project Requests"
method: GET
path: "/v1/projects/{project_id}/requests"
tags: ["requests"]
---

# List Project Requests

`GET /v1/projects/{project_id}/requests`

Generates a list of requests for a specific project

## Path parameters

- `project_id` string, required

## Query parameters

- `start` string, date-time
- `end` string, date-time
- `limit` number, double
- `page` number, double
- `accessor` string
- `request_id` string
- `deployment` 'hosted' | 'beta' | 'self-hosted' — Deployment type for the requests
- `endpoint` 'listen' | 'read' | 'speak' | 'agent'
- `method` 'sync' | 'async' | 'streaming' — Method type for the request
- `status` 'succeeded' | 'failed'

## Headers

- `Authorization` string, required

## Response `200`

A list of requests for a specific project

- ListProjectRequestsV1Response
  - `page` number, double — The page number of the paginated response
  - `limit` number, double — The number of results per page
  - `requests` ProjectRequestResponse[]
    - `request_id` string — The unique identifier of the request
    - `project_uuid` string — The unique identifier of the project
    - `created` string, date-time — The date and time the request was created
    - `path` string — The API path of the request
    - `api_key_id` string — The unique identifier of the API key
    - `response` ProjectRequestResponseResponse — The response of the request
    - `code` number, double — The response code of the request
    - `deployment` string — The deployment type
    - `callback` string — The callback URL for the request

## Other responses

- `400` — Invalid Request

---

[API](https://skmtc.net/deepgram/apis/rest-api.md) · [All operations](https://skmtc.net/deepgram/apis/rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/deepgram/rest-api/versions/bd7ba5c18a6b/schema)
