Authentication

In order to use the Skeddly API, you require an API key. API keys can be obtained by doing the following:

  1. Sign-in to your Skeddly account.

  2. On the left navigation panel, click "Developers" then "API Keys".

  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.

GET /api/resource HTTP/1.1
Host: api.skeddly.com
Authorization: AccessKey <api key>

Make sure to replace <api key> with your API key.

Last updated