Skip to main content

Authorization

To access the VP Player API, you must include your API KEY in all API calls. Your API KEY can be found in the VP Player client interface. If you're having trouble locating your API KEY, please consult the User Guide > Security > ApiKeys.

Warning

Please note that your api-key should be protected and kept private to prevent unauthorized access to your account.

Authenticating an API Request

When you make an API call, add your secret to an API-KEY header of your API request to authenticate the request.

curl -X GET https://vp-api.gjirafa.tech/{request} \
-H 'api-key:your-api-key-goes-here' \
...

Replace your-api-key-goes-here with your actual API KEY value.