team video logo

TEAM VIDEO API

API access to create rooms and retrieve metadata to integrate seamlessly into your business

Programatically create online video, audio and screen share calls to integrate with your workflow and only pay what you use, down to the penny.

Call and chat with colleagues online with private rooms to make video calls and collaborate seamlessly embedded into your web applications.

$0.02 Per Room API

Pay on demand for each chat room you need

Create New Room

                    CURL
                            
curl --request POST \
    --url https://teamvideo.app/api/1/room \
    --header 'content-type: application/json' \
    --header 'x-api-id: your-api-id' \
    --header 'x-api-key: your-api-key' \
    --data '{
        "RoomName": "test room",
        "PassWord": "testpw-for-room"
    }'
                            
                        
                    RESULT
                            
{ 
  "RoomName":"arjjge-fuifvg-1620842746",
  "Password":"",
  "Created":1620842746,
  "Expires":1620849946,
  "URL":"https://teamvideo.app/chat?rn=arjjge-fuif-1620842746&p="
}
                            
                        

Get Existing Room

                    CURL
                            
curl --request GET \
    --url https://teamvideo.app/api/1/room/arjjge-fuif-1620842746 \
    --header 'content-type: application/json' \
    --header 'x-api-id: your-api-id' \
    --header 'x-api-key: your-api-key' \
                            
                        
                    RESULT
                            { 
  "RoomName":"arjjge-fuifvg-1620842746",
  "Password":"",
  "Created":1620842746,
  "Expires":1620849946,
  "URL":"https://teamvideo.app/chat?rn=arjjge-fuif-1620842746&p="
}