Browse the Help Center for platform guides or API & Developers for integration docs.
curl --request POST \
--url https://open.beatpass.ca/api/v1/beat-requests \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"title": "Need a trap beat",
"description": "<string>",
"budget_min": 123,
"budget_max": 123,
"genres": [
"<string>"
]
}
'{
"status": "error",
"message": "Reason for the error",
"errors": {
"some_data_1": "Error message for data 1",
"some_data_2": "Error message for data 2"
}
}curl --request POST \
--url https://open.beatpass.ca/api/v1/beat-requests \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"title": "Need a trap beat",
"description": "<string>",
"budget_min": 123,
"budget_max": 123,
"genres": [
"<string>"
]
}
'{
"status": "error",
"message": "Reason for the error",
"errors": {
"some_data_1": "Error message for data 1",
"some_data_2": "Error message for data 2"
}
}Was this page helpful?