LIST

List Surveys

Returns a paginated list of all surveys in the authenticated account.

Endpoint

GET v5/survey

Requires authentication

Path Parameters

None

Query Parameters

None

Response

Returns a paginated array of survey objects belonging to the authenticated account.

result_ok
boolean
Whether the request succeeded.
total_count
integer
Total number of surveys in the account.
page
integer
Current page index of the result set.
total_pages
integer
Total number of available result pages.
results_per_page
integer
Number of results returned per page.
data
array
Array of survey objects.

Examples

Note GET requests are cached for 60 seconds. Repeated identical requests within that window will return cached results.

Request (cURL)
curl -X GET "https://api.alchemer.com/v5/survey?api_token=YOUR_API_TOKEN&api_token_secret=YOUR_API_TOKEN_SECRET"
Response
{
  "result_ok": true,
  "total_count": 3,
  "page": 1,
  "total_pages": 1,
  "results_per_page": 3,
  "data": [
    {
      "id": "YOUR_SURVEY_ID",
      "team": "YOUR_TEAM_ID",
      "type": "Standard Survey",
      "status": "Launched",
      "created_on": "2026-03-19 15:58:55",
      "modified_on": "2026-03-19 16:00:31",
      "title": "Q1 Customer Feedback",
      "statistics": {
        "Complete": 5
      },
      "links": {
        "edit": "https://app.alchemer.com/projects/editor?id=YOUR_SURVEY_ID",
        "publish": "https://app.alchemer.com/distribute/share?id=YOUR_SURVEY_ID",
        "default": "https://survey.alchemer.com/s3/YOUR_SURVEY_ID/q1-customer-feedback"
      }
    },
    {
      "id": "YOUR_SURVEY_ID_2",
      "team": "YOUR_TEAM_ID",
      "type": "Standard Survey",
      "status": "Launched",
      "created_on": "2025-12-09 16:50:42",
      "modified_on": "2026-03-26 15:46:58",
      "title": "Annual Employee Survey",
      "statistics": {
        "Partial": 52,
        "Deleted": 1,
        "Complete": 41
      },
      "links": {
        "edit": "https://app.alchemer.com/projects/editor?id=YOUR_SURVEY_ID_2",
        "publish": "https://app.alchemer.com/distribute/share?id=YOUR_SURVEY_ID_2",
        "default": "https://survey.alchemer.com/s3/YOUR_SURVEY_ID_2/annual-employee-survey"
      }
    },
    {
      "id": "YOUR_SURVEY_ID_3",
      "team": "YOUR_TEAM_ID",
      "type": "QuestionLibrary",
      "status": "Launched",
      "created_on": "2025-10-21 17:13:35",
      "modified_on": "2025-10-21 17:13:36",
      "title": "My Question Library",
      "statistics": null,
      "links": {
        "edit": "https://app.alchemer.com/projects/editor?id=YOUR_SURVEY_ID_3",
        "publish": "https://app.alchemer.com/distribute/share?id=YOUR_SURVEY_ID_3",
        "default": "https://survey.alchemer.com/s3/YOUR_SURVEY_ID_3/my-question-library"
      }
    }
  ]
}