GET

Get Survey

Returns detailed information about a single survey, including its configuration, pages, and questions.

Endpoint

GET v5/survey/{survey_id}

Requires authentication

Path Parameters

The survey to retrieve.

survey_id
string
required
The ID of the survey to retrieve.

Query Parameters

This endpoint does not accept additional query parameters beyond authentication credentials.

None

Response

Returns a single survey object containing full configuration, page structure, and question details.

result_ok
boolean
Whether the request succeeded.
data
object
The survey object.

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/YOUR_SURVEY_ID?api_token=YOUR_API_TOKEN&api_token_secret=YOUR_API_TOKEN_SECRET"
Response
{
  "result_ok": true,
  "data": {
    "id": "YOUR_SURVEY_ID",
    "team": [
      {
        "id": "YOUR_TEAM_ID",
        "name": "Team 1"
      }
    ],
    "type": "Standard Survey",
    "status": "Launched",
    "created_on": "2026-03-19 15:58:55",
    "modified_on": "2026-03-19 16:00:31",
    "forward_only": false,
    "languages": [
      "English"
    ],
    "title": "Q1 Customer Feedback",
    "internal_title": "Q1 Customer Feedback",
    "title_ml": {
      "English": "Q1 Customer Feedback"
    },
    "theme": "YOUR_THEME_ID",
    "blockby": null,
    "statistics": {
      "Complete": 5
    },
    "overall_quota": null,
    "auto_close": null,
    "links": {
      "default": "https://survey.alchemer.com/s3/YOUR_SURVEY_ID/q1-customer-feedback",
      "campaign": "https://survey.alchemer.com/s3/YOUR_SURVEY_ID/q1-customer-feedback"
    },
    "pages": [
      {
        "id": 1,
        "title": {
          "English": "(untitled)"
        },
        "properties": {
          "hidden": false
        },
        "description": [],
        "questions": [
          {
            "id": 2,
            "base_type": "Question",
            "type": "FILE",
            "title": {
              "English": "Please upload your file"
            },
            "shortname": "",
            "description": [],
            "has_showhide_deps": null,
            "comment": false,
            "properties": {
              "required": false,
              "hidden": false
            },
            "options": [],
            "show_rules_ids": null
          }
        ]
      },
      {
        "id": 2,
        "title": {
          "English": "Thank You!"
        },
        "properties": {
          "hidden": false
        },
        "description": [],
        "questions": [
          {
            "id": 1,
            "base_type": "Decorative",
            "type": "INSTRUCTIONS",
            "title": {
              "English": "Thank you for taking our survey."
            },
            "shortname": null,
            "description": [],
            "has_showhide_deps": null,
            "comment": null,
            "properties": {
              "hidden": false
            },
            "options": [],
            "show_rules_ids": null
          }
        ]
      }
    ]
  }
}