GET

Get Survey Option

Returns detailed information about a single option for the specified survey question.

Endpoint

GET v5/survey/{survey_id}/surveyquestion/{question_id}/surveyoption/{option_id}

Requires authentication

Path Parameters

The survey, question, and specific option to retrieve.

survey_id
string
required
The ID of the survey containing the question.
question_id
string
required
The ID of the question containing the option.
option_id
string
required
The ID (SKU) of the specific option to retrieve.

Query Parameters

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

None

Response

Returns a single survey option object.

result_ok
boolean
Whether the request succeeded.
data
object
The survey option 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/surveyquestion/YOUR_QUESTION_ID/surveyoption/YOUR_OPTION_ID?api_token=YOUR_API_TOKEN&api_token_secret=YOUR_API_TOKEN_SECRET"
Response
{
  "result_ok": true,
  "data": {
    "id": 10015,
    "title": {
      "English": "Yes"
    },
    "value": "Yes",
    "properties": {
      "disabled": false,
      "other": false
    }
  }
}