CREATE

Create Survey

Creates a new survey in the authenticated account. Returns the full survey object, including the two default pages Alchemer creates automatically.

Endpoint

PUT v5/survey

Requires authentication

Path Parameters

This endpoint does not have path parameters.

None

Query Parameters

title
string
required
The title of the new survey.
type
string
required
The survey type. Accepted values: survey, form, poll, quiz.
status
string
The initial status of the survey. Example values: Launched, Closed.
team
string
The ID of the team to assign the survey to.

Response

Returns the result of the creation request and the full survey object.

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

Examples

Request (cURL)
curl -X PUT "https://api.alchemer.com/v5/survey?api_token=YOUR_API_TOKEN&api_token_secret=YOUR_API_TOKEN_SECRET&title=Q1+Customer+Feedback"
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-30 16:33:29",
    "modified_on": "2026-03-30 16:33:29",
    "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": "NONE",
    "statistics": null,
    "overall_quota": null,
    "auto_close": null,
    "sso": [],
    "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,
        "title": {
          "English": "Thank You!"
        },
        "properties": {
          "hidden": false
        },
        "description": [],
        "questions": [
          {
            "id": 1,
            "base_type": "Decorative",
            "type": "INSTRUCTIONS",
            "title": {
              "English": "Thank you for taking our survey. Your response is very important to us."
            },
            "shortname": null,
            "varname": [],
            "description": [],
            "has_showhide_deps": null,
            "comment": null,
            "properties": {
              "hidden": false,
              "map_key": "instructions"
            },
            "options": [],
            "show_rules_ids": null
          }
        ]
      }
    ]
  }
}