Skip to content

Latest commit

 

History

History
35 lines (21 loc) · 1.95 KB

getting-started.md

File metadata and controls

35 lines (21 loc) · 1.95 KB

image

My suggestions start between the end of "Mobile support" and the "How to contact us" section


REST API Quickstart

To get started with creating Daily.co API rooms, sign up for a free Daily.co account and head to the Developers tab in your dashboard. You will need your API key to create rooms at your Daily.co subdomain using the REST API.

developer key page

Once you have your key, you can make real API requests to create, update, list, and delete rooms and meeting tokens right inside the documentation.

Daily.co try it

Click the Try It button and enter your API key to make requests and see the results in the right pane. Adjust the body parameters to your liking (or don't to create a room with the default settings).

At the top of that right pane, you can see the code you can use to create the room with the settings you specified.

request using cURL

You can see examples in cURL, Node, Ruby, JavaScript, and Python.

This is an example of a request using cURL (with the API key omitted) to create a room with chat enabled

curl --request POST \
  --url https://api.daily.co/v1/rooms \
  --header 'authorization: Bearer *Replace with your API key*' \
  --header 'content-type: application/json' \
  --data '{"properties":{"enable_chat":true}}'

Check out our blog post to get up and running in 5 minutes with publicly accessible embedded video calls.