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

# List Responses

> Retrieve survey responses

## Authentication

Requires `responses:read` scope.

## Query Parameters

<ParamField query="survey_id" type="string">
  Filter by survey UUID
</ParamField>

<ParamField query="contact_id" type="string">
  Filter by contact UUID
</ParamField>

<ParamField query="location_id" type="string">
  Filter by location UUID
</ParamField>

<ParamField query="rating_min" type="integer">
  Minimum rating (0-10 for NPS, 1-5 for CSAT)
</ParamField>

<ParamField query="rating_max" type="integer">
  Maximum rating
</ParamField>

<ParamField query="date_from" type="string">
  Start date (ISO 8601)
</ParamField>

<ParamField query="date_to" type="string">
  End date (ISO 8601)
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl "https://app.demeterrr.com/api/v1/responses?survey_id=990e8400-e29b-41d4-a716-446655440000" \
    -H "X-API-Key: dem_your_key_here"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 Success theme={null}
  {
    "data": [
      {
        "id": "aa0e8400-e29b-41d4-a716-446655440000",
        "surveyId": "990e8400-e29b-41d4-a716-446655440000",
        "contactId": "550e8400-e29b-41d4-a716-446655440000",
        "npsScore": 9,
        "isPromoter": true,
        "status": "completed",
        "createdAt": "2026-02-10T14:00:00.000Z"
      }
    ],
    "meta": {
      "page": 1,
      "perPage": 50,
      "total": 342,
      "totalPages": 7
    }
  }
  ```
</ResponseExample>
