Get Started

Authentication

API endpoints are protected, and therefore require that you authenticate using an access token.

1. Generate a token

  • Navigate to your SocialKit dashboard.
  • Click on Access Tokens from user menu.
  • Click on Create Token.
  • Give it a name, then click on Create.
  • Copy your token.

2. Workspace UUID

All operations require a Workspace UUID. To find yours:

  • Navigate to your SocialKit dashboard.
  • Click on Settings from user menu.
  • Click on Settings from the sidebar.
  • Find the UUID in the Usage in API section.
  • Copy your token.

3. Use your token

You can authenticate by adding an Authorization header to all your HTTP calls. The Authorization header is formatted as such: Authorization: Bearer <token> (replace <token> with your token previously generated).

The url for API endpoints within SocialKit is as follows:

https://app.socialk.it/core/api/*

Example:

curl -L -X GET 'https://app.socialk.it/core/api/{workspaceId}/accounts' \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer myCoolToken'