PureSpectrum
PureSpectrum websiteHelp center
PureSpectrum websiteHelp center
  1. Attributes
  • Back to home
  • API Reference
  • Feasibility
    • Feasibility & Pricing
  • Attributes
    • Get attribute (V3)
      GET
    • Get attributes (V3)
      GET
  • 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
  1. Attributes

Get attribute (V3)

GET
/attributes/{QUALIFICATION_CODE}
Last modified:2025-10-05 16:47:31

Description#

This endpoint can be used to retreive the individual properties of each attribute for all available localisations.
This endpoint is using the V3 version of the Buyers API.
Staging: https://staging.spectrumsurveys.com/buyers/v3/attributes
Production: https://api.spectrumsurveys.com/buyers/v3/attributes
Although the V2 version is still operational, its response schema and data are outdated.

Request

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

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/v3/attributes/?localization=en_US' \
--header 'access-token: <api-key>'

Responses

🟢200Success
application/json
Bodyapplication/json

Example
{
    "qualification_code": 211,
    "recency": 30,
    "desc": "Gender",
    "category": [],
    "tags": "",
    "type": 1,
    "class": 1,
    "create_survey_question_order": 1000,
    "randomize_answer_options": false,
    "is_hidden": false,
    "is_active": true,
    "localizations": [
        {
            "locale": "en_US",
            "text": "I'm a %%211%%",
            "placeholder": "Male/Female",
            "answers": [
                {
                    "answer_id": "111",
                    "local_text": "Male",
                    "eng_text": "Male",
                    "condition_code": 111
                },
                {
                    "answer_id": "112",
                    "local_text": "Female",
                    "eng_text": "Female",
                    "condition_code": 112
                },
                {
                    "answer_id": "113",
                    "local_text": "Prefer not to say",
                    "eng_text": "Prefer not to say",
                    "condition_code": 113
                }
            ],
            "format": {
                "min": null,
                "max": null,
                "regex": ""
            }
        }
    ]
}
🟠404Record Not Found
🟠401Unauthorized
Modified at 2025-10-05 16:47:31
Previous
Attributes
Next
Get attributes (V3)