Quick Start
A brief introduction to getting started with building using Orchdio APIs.
Create your Organization
In order to get started, head to https://dev.orchdio.com to create a new organization. After creating a new Organization.
Next, you need to create a new App and add your integration credentials. Your integration credentials are the API credentials created for you when you create a new application on the streaming platform you plan to support. For example, if you want to integrate Spotify, you need to create a Spotify app and you'd get integration credentials created. You must add at least one integration when you create a new Orchdio App.
Get your API keys
After creating a new app, API keys are generated for you, which you can copy and use in your requests.
Make your first request
Now that you've gotten your keys, you can make a request to the convert
endpoint. In order to make read-only calls (i.e you're requesting for a resource, not trying to perform, say a user action), you need to pass the public key
for your app (from the dashboard)
Convert track.
POST
https://api.orchdio.dev/v1/entity/convert
Converts a new track by fetching the links to the track from other platforms.
Headers
x-orchdio-public-key*
String
the public key associated with an app
Request Body
url*
string
the url to convert
You can also convert a playlist as so:
Convert a playlist
POST
https://api.orchdio.dev/v1/entity/convert
Headers
x-orchdio-public-key*
String
Request Body
url*
String
target_platform*
String
Last updated