Skeddly API
Search
K
Comment on page

Authentication

In order to use the Skeddly API, you require an API key. API keys can be obtained by doing the following:
  1. 1.
    Sign-in to your Skeddly account.
  2. 2.
    On the left navigation panel, click "Developers" then "API Keys".
  3. 3.
    Click the "Create API Key" button to create an API key.
When making HTTPS requests, all requests must include the Authorization: header in the following format:
Authorization: AccessKey <api key>
You must replace with your personal API key.
HTTP
Bash
Python
GET /api/resource HTTP/1.1
Host: api.skeddly.com
Authorization: AccessKey <api key>
With shell, you can just pass the correct header with each request
curl "api_endpoint_here"
-H "Authorization: AccessKey <api key>"
Include your access key in the client constructor.
import skeddly
client = skeddly.Client(
accessKey="<api key>"
)
Make sure to replace <api key> with your API key.