Get survey page

Get Survey Page

Returns detailed information about a single page in the specified survey.

Endpoint

GET v5/survey/{survey_id}/surveypage/{page_id}

Requires authentication

Path Parameters

The survey and specific page to retrieve.

survey_id
string
required
The ID of the survey containing the page.
page_id
string
required
The ID of the specific page to retrieve.

Query Parameters

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

None

Response

Returns a single survey page object.

result_ok
boolean
Whether the request succeeded.
id
string
The unique ID of the page.
title
string
The title of the page.
description
string
The description text displayed on the page.
properties
object
Configuration properties set on the page.

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/surveypage/YOUR_PAGE_ID?api_token=YOUR_API_TOKEN&api_token_secret=YOUR_API_TOKEN_SECRET"
Response
{
  "result_ok": true,
  "id": "1",
  "title": "Page 1",
  "description": "",
  "properties": {
    "hidden": false,
    "piped_from": ""
  }
}