SurveyMonkey Survey Structure API

The Survey Structure API from SurveyMonkey — 4 operation(s) for survey structure.

Operations 4

GET /surveys/{survey_id}/pages List survey pages #
GET /surveys/{survey_id}/pages/{page_id} Get page details #
GET /surveys/{survey_id}/pages/{page_id}/questions List questions on a page #
GET /surveys/{survey_id}/pages/{page_id}/questions/{question_id} Get question details #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/surveymonkey-survey-structure-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

surveymonkey-survey-structure-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: SurveyMonkey API v3 Collectors Survey Structure API
  description: SurveyMonkey REST API v3 covering users, groups, workgroups, surveys, survey structure (pages/questions), responses and analytics, collectors, and contacts. Authenticated via OAuth 2.0 access tokens passed as Bearer tokens.
  version: 3.0.0
  contact:
    name: SurveyMonkey API documentation
    url: https://api.surveymonkey.com/v3/docs
servers:
- url: https://api.surveymonkey.com/v3
  description: Production
security:
- oauth2: []
tags:
- name: Survey Structure
paths:
  /surveys/{survey_id}/pages:
    parameters:
    - in: path
      name: survey_id
      required: true
      schema:
        type: string
    get:
      tags:
      - Survey Structure
      summary: List survey pages
      operationId: listSurveyPages
      responses:
        '200':
          description: Pages
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Collection'
  /surveys/{survey_id}/pages/{page_id}:
    parameters:
    - in: path
      name: survey_id
      required: true
      schema:
        type: string
    - in: path
      name: page_id
      required: true
      schema:
        type: string
    get:
      tags:
      - Survey Structure
      summary: Get page details
      operationId: getSurveyPage
      responses:
        '200':
          description: Page details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Page'
  /surveys/{survey_id}/pages/{page_id}/questions:
    parameters:
    - in: path
      name: survey_id
      required: true
      schema:
        type: string
    - in: path
      name: page_id
      required: true
      schema:
        type: string
    get:
      tags:
      - Survey Structure
      summary: List questions on a page
      operationId: listSurveyQuestions
      responses:
        '200':
          description: Questions
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Collection'
  /surveys/{survey_id}/pages/{page_id}/questions/{question_id}:
    parameters:
    - in: path
      name: survey_id
      required: true
      schema:
        type: string
    - in: path
      name: page_id
      required: true
      schema:
        type: string
    - in: path
      name: question_id
      required: true
      schema:
        type: string
    get:
      tags:
      - Survey Structure
      summary: Get question details
      operationId: getSurveyQuestion
      responses:
        '200':
          description: Question details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Question'
components:
  schemas:
    Collection:
      type: object
      properties:
        data:
          type: array
          items:
            type: object
            additionalProperties: true
        per_page:
          type: integer
        page:
          type: integer
        total:
          type: integer
        links:
          type: object
          additionalProperties:
            type: string
    Page:
      type: object
      properties:
        id:
          type: string
        title:
          type: string
        description:
          type: string
        position:
          type: integer
        question_count:
          type: integer
    Question:
      type: object
      properties:
        id:
          type: string
        position:
          type: integer
        family:
          type: string
        subtype:
          type: string
        headings:
          type: array
          items:
            type: object
            properties:
              heading:
                type: string
  securitySchemes:
    oauth2:
      type: oauth2
      flows:
        authorizationCode:
          authorizationUrl: https://api.surveymonkey.com/oauth/authorize
          tokenUrl: https://api.surveymonkey.com/oauth/token
          scopes:
            surveys_read: Read surveys
            surveys_write: Create and modify surveys
            responses_read: Read responses
            responses_write: Create and modify responses
            contacts_read: Read contacts
            contacts_write: Modify contacts
            users_read: Read user data