Skip to content

Unstable APIs ⚠

The routes listed here are considered unstable. Wikit reserves the right to modify them at any time without ensuring backward compatibility.

Exporting request history

GET /semantics/conversations

bash
curl "https://apis.wikit.ai/semantics/conversations?page=1&size=50" \
-H "x-wikit-organization-id: $SEMANTICS_ORG_ID" \
-H "Authorization: Bearer $SEMANTICS_TOKEN"

Creating a user

POST /iam/v1/users

bash
curl -X POST "https://apis.wikit.ai/iam/v1/users" \
  -H "Content-Type: application/json" \
  -H "X-WIKIT-ORGANIZATION-ID: $SEMANTICS_ORG_ID" \
  -H "Authorization: Bearer $SEMANTICS_TOKEN" \
  --data-raw $'{"profiles":["semantics-chat"],"userLogin":"","email":"user@domain.fr","lastName":"LastName","firstName":"FirstName"}'