The top item in the Vevo graph is a special home container. We can fetch it like so:
curl -s -X "POST" "https://api.vevo.com/graphql" \
-H 'Authorization: Bearer 8mvrg5a0t402mjyjxr98xgz36c' \
-H 'Accept-Encoding: gzip' \
-H 'Content-Type: application/json; charset=utf-8' \
-d $'{
"query": "{ home { title description } }"
}' | jq
which will return:
{
"data": {
"home": {
"title": "Vevo Home",
"description": "The main entry point for the Vevo home page."
}
}
}
Note that the auth token included in this documentation is valid, but has a very low rate limit. If you encounter problems testing with it, please contact Vevo for a different one.
From now on, we will omit everything from the request except the query, for brevity.