📖
API documentation
  • 🚀 Dashboard
  • 📅Changelog
  • 💾Deprecations
  • 🛠️Resources
    • Artist
    • ArtistRole
    • AppleArtist
    • AssetAttachment
    • Availability
    • Booklet
    • Company
    • Continent
    • Currency
    • Customisation
    • Distributor
    • DistributorPriceCode
    • DistributorProductSubgenres
    • Dsp
    • DspState
    • DspTag
    • DspUploadIdentification
    • Gender
    • ImportTask
    • ImportTask [NEW]
    • Label
    • Language
    • Offer
    • Playlist
    • Product
    • ProductGenre
    • ProductType
    • Quotas
    • Record
    • Retail
    • Role
    • Right
    • SendTask
    • SendTaskFactory
    • SpotifyArtist
    • Tag
    • Territory
    • Track
    • TrackOffer
    • TrackVideo
    • Video
    • Webhooks
  • 💡Best practices
    • JSON API documentation
    • Perform your first request
    • Make specific JSON API request
    • Manage the static resources
    • List of common HTTP status codes
    • ⁉️Timeouts and Errors
  • 🖥️Tutorials
    • Full Scenario
    • Managing artists
    • Upload a Dolby Atmos
    • Set a timed release
    • Update Scenario
  • 🔗Exports
    • Daily Trends export
  • 📡Webhooks
    • Presentation
Powered by GitBook
On this page
  1. 🛠️Resources

Dsp

PreviousDistributorProductSubgenresNextDspState

Last updated 5 months ago

CtrlK
  • List Dsps
  • Filter resources
  • Get Dsp

List Dsps

GET https://api.idol.io/api/v2/dsps

Headers

Name
Type
Description

Authorization*

string

Bearer <token>

Content-Type*

string

application/vnd.api+json

{
  "data": [
    {
      "id": "<ID>",
      "type": "dsps",
      "links": {
        "self": "https://api.idol.io/api/v2/dsps/<ID>"
      },
      "attributes": {
        "name": "IDOL",
        "image-url": "https://api.idol.io/assets/labelcamp/status/default_dsp-0e3fa37826ed475e3f101f7b474456fc675347076c44bb8e33d6c0.png"
      }
    },
    {
      "id": "<ID>",
      "type": "dsps",
      "links": {
        "self": "https://api.idol.io/api/v2/dsps/<ID>"
      },
      "attributes": {
        "name": "Amazon",
        "image-url": "https://api.idol.io/assets/labelcamp/status/fnac-ba58fca8545756ca8d98fa0a4564458ba21840cd1ec31618938.jpg"
      }
    },
    {
      "id": "<ID>",
      "type": "dsps",
      "links": {
        "self": "https://api.idol.io/api/v2/dsps/<ID>"
      },
      "attributes": {
        "name": "Apple",
        "image-url": "https://api.idol.io/assets/labelcamp/status/apple-744dc3385b2206d0c1935f74a3a463d86b1ad5f5a7dfba7507f.jpg"
      }
    },
    {
      "id": "<ID>",
      "type": "dsps",
      "links": {
        "self": "https://api.idol.io/api/v2/dsps/<ID>"
      },
      "attributes": {
        "name": "Deezer",
        "image-url": "https://api.idol.io/assets/labelcamp/status/virgin-1e5265aa9df5c351c5ff1702a6ceef03242f89bc6a626ffcbcdba55.jpg"
      }
    },
    {
      "id": "<ID>",
      "type": "dsps",
      "links": {
        "self": "https://api.idol.io/api/v2/dsps/<ID>"
      },
      "attributes": {
        "name": "Tencent",
        "image-url": "https://api.idol.io/assets/labelcamp/status/musiwave-26e0d5fa26553a45c6aacca8b55c5784eb8a0432747ff09e863b.jpg"
      }
    },
    {
      "id": "<ID>",
      "type": "dsps",
      "links": {
        "self": "https://api.idol.io/api/v2/dsps/<ID>"
      },
      "attributes": {
        "name": "TikTok",
        "image-url": "https://api.idol.io/assets/labelcamp/status/default_dsp-1fa37826ed475e3f101f7b474456fc675347076c44bb8e33d6c0.png"
      }
    },
    {
      "id": "<ID>",
      "type": "dsps",
      "links": {
        "self": "https://api.idol.io/api/v2/dsps/<ID>"
      },
      "attributes": {
        "name": "YouTube Content ID",
        "image-url": "https://api.idol.io/assets/labelcamp/status/nokia-c8fc038f1aa1efce3654dc92a113cb0d9843a640647ebea0b9e0.jpg"
      }
    },
    {
      "id": "<ID>",
      "type": "dsps",
      "links": {
        "self": "https://api.idol.io/api/v2/dsps/<ID>"
      },
      "attributes": {
        "name": "AMI",
        "image-url": "https://api.idol.io/assets/labelcamp/status/emusic-8bb4269e36f989c4fc74a6f3b3581b51dfd396b8e8c4938c499fc.jpg"
      }
    },
    {
      "id": "<ID>",
      "type": "dsps",
      "links": {
        "self": "https://api.idol.io/api/v2/dsps/<ID>"
      },
      "attributes": {
        "name": "Qobuz",
        "image-url": "https://api.idol.io/assets/labelcamp/status/qobuz-882bf6a02f1f3feb2481676a564fd2c520538fc704659f9d760.jpg"
      }
    }
  ],
  "meta": {
    "record-count": 254,
    "page-count": 10
  },
  "links": {
    "first": "https://api.idol.io/api/v2/dsps?page%5Bnumber%5D=1&page%5Bsize%5D=10",
    "next": "https://api.idol.io/api/v2/dsps?page%5Bnumber%5D=2&page%5Bsize%5D=10",
    "last": "https://api.idol.io/api/v2/dsps?page%5Bnumber%5D=10&page%5Bsize%5D=10"
  }
}

Filter resources

api/v2/dsps?filter[distributor-id]=1

Get Dsp

GET https://api.idol.io/api/v2/dsps/:id

Path Parameters

Name
Type
Description

id*

number

ID of the Dsp

Headers

Name
Type
Description

Authorization*

string

Bearer <token>

Content-Type*

string

application/vnd.api+json

{
  "data": {
    "id": "<ID>",
    "type": "dsps",
    "links": {
      "self": "https://api.idol.io/api/v2/dsps/<ID>"
    },
    "attributes": {
      "name": "Apple",
      "image-url": "https://api.idol.io/assets/labelcamp/status/apple-744dc206d0c1935f74a3a463d86b1ad5f5a7dfba7507f.jpg"
    }
  }
}