Authentication

To call VidMob APIs, ensure that you have already created your API key. See Getting Access. The API key acts as your bearer token.

All the requests must be made through HTTPS and should have access token/api key in the header of the requests as shown below.

HTTP Header: Authorization: Bearer <access_token>

Example

curl --location --request GET 'https://public-api.vidmob.com/v1/organization' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <access token>'

If the API key is valid, you will receive a 200 status code along with the intended response. In the example above you would receive the name and ID of the Organization for which the API key belongs.

Example of a successful response:

{
    "status": "OK",
    "result": {
        "id": "b1dc7125-59a6-4211-92f5-2976f5422202",
        "name": "My Fake Organization"
    }
}

For more information, see Error Codes. Please reach out to Support if you are getting 403 for a valid API Key.