We are currently working on a Javascript SDK, meanwhile you may use the REST API. You can find the API spec here.

Thinkeo can be embedded in your app with in ways:

Generating a token

To use most of Thinkeo API's endpoints, you need an access token. One can be generated with the following shell scriptlet:

auth=$(echo "<email>:<password>" | base64) # needs base64

# This generates a token valid until 31 december 2024
curl --request POST --location '<https://api.thinkeo.io/v0/tokens?expiration=2024-12-31T00:00:00Z&name=my_new_token>' \\
     --header "Authorization: Basic $auth"

This returns a json with your fresh new token, one like:

{
  "token": "LXYFQSsK3Xij-QqV9owQfvm19OPTzhOd5OfbqBF3WapO-XIt8ca3dSnS6wgm49l9"
}

This token can be used to generate new tokens

Embedding Thinkeo