PureSpectrum
PureSpectrum websiteHelp center
PureSpectrum websiteHelp center
  1. Templates
  • Back to home
  • API Reference
  • Feasibility
    • Feasibility & Pricing
  • Attributes
    • Get attribute (V3)
    • Get attributes (V3)
  • Surveys
    • Create survey
    • Get similar surveys
    • Create group multi-country surveys
    • Update survey
    • Update survey
    • Update survey status
    • Update offer price
    • Update group multi-country surveys
    • Get survey information
    • Get survey status
    • Get survey performance
    • Get list of all surveys
    • Surveys health status
    • Pacing details
    • Delete survey
  • Qualifications
    • Add qualification
    • Update qualification
    • Get qualification information
    • Get all qualifications
    • Delete qualification
  • Quotas
    • Add quota
    • Update quota
    • Update quota
    • Get quota information
    • Get quota performance
    • Delete quota
  • Survey group exclusions
    • Create exclusion group
    • Update exclusion group
    • Get exclusion group information
    • Delete exclusion group
  • Respondent inclusion / exclusion
    • Add a PSIDref list to a survey
    • Update a PSIDref for survey
    • Get PSIDref list for survey
  • Supplier management
    • Create supplier blend
    • Update the list of suppliers for a survey
    • Get list of available suppliers in a locale
    • Get list of available suppliers for a survey
    • Get list of supplier blends
  • Traffic Channels
    • Create traffic channel
    • Get a list of traffic channels
  • Transactions
    • Update status of transaction (V2)
    • Update status of transaction (V3)
    • Register transaction as complete
    • Get transaction status (V3)
    • Get transaction info (V3)
    • Get transactions info for a survey ID (V3)
  • Reconciliation
    • Survey reconciliation
    • Multi survey reconciliation
    • Get status of a reconciliation request
    • Get reconciliation status for an adjustment ID
  • PureText
    • PureText Open-ended (OE) check (V3)
  • Activity logs
    • Get activity logs
    • Get events
  • Templates
    • Get survey templates
      GET
  1. Templates

Get survey templates

GET
/templates
Last modified:2025-07-28 22:51:12

Description#

This endpoint will return all survey templates that have been created via the User Interface of the PureSpectrum MarketPlace.
The template ID will allow you to create a survey based on that template without specifying other settings. The template ID can be added during survey creation. You can check the list of templates IDs using this endpoint.

Request

Authorization
Add parameter in header
access-token
Example:
access-token: ********************
Query Params

Request Code Samples

Shell
JavaScript
Java
Go
PHP
Python
C#
Ruby
Request Request Example
Shell
JavaScript
Java
Go
curl --location 'https://staging.spectrumsurveys.com/buyers/v2/templates?UI=0' \
--header 'access-token: <api-key>'

Responses

🟢200Success
application/json
Bodyapplication/json

Example
[
    {
        "id": 1,
        "name": "PureSpectrum Default Templates",
        "owner": 25,
        "is_service_buyer": false,
        "is_default": true,
        "templates": [
            {
                "id": 9,
                "name": "Default template",
                "title": "Default Template"
            }
        ]
    },
    {
        "id": 201,
        "name": "Set-up template",
        "owner": 4046,
        "is_service_buyer": false,
        "is_default": false,
        "templates": [
            {
                "id": 881,
                "name": "Parents of children, car owners",
                "title": "Test Set-up"
            }
        ]
    }
]
Modified at 2025-07-28 22:51:12
Previous
Templates