Authentication

The Playbooks API uses API keys to authenticate requests and grant access to private resources. To see this in action, simply copy / paste the following command and replace the <your_api_key> with your credentials. This should return a 200 response as shown.

Headers

HeaderTypeDescription
AuthorizationstringYour session JWT token

Request

Request
  curl
  --location "https://api.playbooks.ai/session"
  --header "Authorization: <your_api_key>"

Response

Response
  {
    "data": {
      "id": "3",
      "firstName": "Eric",
      "lastName": "Hubbell",
      "tagline": "Entrepreneur // Software Developer",
      ...
    }
  }