Introduction

Apizee and ApiRTC REST APIs enable developers to manage video chat lifecycle and integrate valuable data into other systems

What can you do with the Apizee REST APIs?

REST APIs split into 2 categories:

Authentication is managed by a shared endpoint: /authentication

>> Try it now

>> Get the specs

Authentication

You need to be an Apizee or ApiRTC authenticated user to use the APIs.

Be mindful that you get the authentication token by passing clear username and password along with your API call; this operation must be done by your application's backend to avoid security issues and NOT by your frontend part.

Authorization: Bearer <token>

Example of use:

curl -X 'POST' 'https://cloud.apizee.com/api/token?grant_type=password&username=test%40apizee.com&password=xxYY1122' 
    -H 'accept: application/JSON' 
    -d 

Response

{
    "access_token": "xyzaaa-c900-4dd2-8192-12345678",
    "created_at": "2023-07-12T15:22:04+00:00",
    "expires_in": 86400
}

Compliant with the OpenAPI Standards

Webhooks

Design a two-way integration by enabling ApiRTC to push events to your systems.

Last updated