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 supplier blends

GET
/supplier-blends
Last modified:2025-09-16 21:03:24

Description#

The Supplier Blend feature allows you to save presets for Supplier Allocation, Flexibility and Groups.
In order to avoid having to create Supplier Groups and Allocations manually for every survey, you can use Supplier Blends to quickly apply these presets by choosing them from a list.
For more information follow this guide Supplier Blends & Groups.

Request

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

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/supplier-blends' \
--header 'access-token: <api-key>'

Responses

🟢200Success
application/json
Bodyapplication/json

Example
[
    {
        "suppliers": [
            {
                "group_name": "Supplier Blend",
                "id": "",
                "supplier_id": [
                    {
                        "id": 5,
                        "allocation": 100
                    },
                    {
                        "id": 7,
                        "allocation": 100
                    }
                ],
                "allocation_percentage": "",
                "is_custom_allocation": false
            },
            {
                "group_name": "",
                "id": "4068",
                "supplier_id": [
                    {
                        "id": 4068,
                        "allocation": 100
                    }
                ],
                "allocation_percentage": "0",
                "is_custom_allocation": false
            }
        ],
        "is_default": false,
        "is_active": true,
        "is_locked": false,
        "config_name": "Supplier Blend",
        "buyer_id": 4046,
        "id": "sb9ae9zeeb67",
        "blend_flexibility": 100,
        "flexibilitySelectedType": {
            "key": 0,
            "value": "Global"
        },
        "locale": ""
    }
]
Modified at 2025-09-16 21:03:24
Previous
Get list of available suppliers for a survey
Next
Traffic Channels