PureSpectrum
PureSpectrum websiteHelp center
PureSpectrum websiteHelp center
  1. Supplier management
  • 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
      POST
    • Update the list of suppliers for a survey
      PUT
    • Get list of available suppliers in a locale
      GET
    • Get list of available suppliers for a survey
      GET
    • Get list of supplier blends
      GET
  • 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. Supplier management

Get list of available suppliers in a locale

GET
/suppliers
Last modified:2025-10-02 19:10:05

Description#

This endpoint can be used to view a list of suppliers available in your account, by survey localization.
The response of this endpoint will return suppliers, by supplier ID, which may then be used in other API requests like Selecting Suppliers For Your Survey & Setting Quotas By Supplier.
Only suppliers that are not blocked, and have sample available in the selected survey localization will appear in the response.
Caching data
Our list of suppliers updates as we add / remove suppliers to our marketplace. Please take this into consideration when caching supplier names & ID’s.
We do not paginate the results of this endpoint. Passing an invalid localization code will result in an HTTP 400 error.
For a list of valid survey localization codes, please see Survey Localization Codes page.

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

Responses

🟢200Success
application/json
Bodyapplication/json

Example
Non exhaustive list of all available suppliers for a locale.
[
    {
        "id": 7,
        "name": "Say For Example"
    },
    {
        "id": 12,
        "name": "Decision Analyst"
    },
    {
        "id": 16,
        "name": "Innovate"
    },
    {
        "id": 17,
        "name": "P2 Sample"
    }
]
🟠400Bad Request
Modified at 2025-10-02 19:10:05
Previous
Update the list of suppliers for a survey
Next
Get list of available suppliers for a survey