Skip to main content
POST
/
ranking
/
promote
/
{userid}
curl --request GET \
  --url https://apexal.overli.xyz/api/v1/workspace/ \
  --header 'Authorization: APIKEY' \
  --header 'Content-Type: application/json'
{
  "success": true,
  "details": {
    "WorkspaceName": "Kiasto",
    "WorkspaceID": "98fda-c4821-09uiq-ko923",
  }
}
As we are newly launched, endpoints may expect slower response times. We are working on making them better!

Authentication

All API endpoints are authenticated using workspace private authorization keys.
Authorization
string
required
Example: Authorization: apexal_c8fJ71***********

Get Workspace Information

Use this endpoint to trigger a lookup for a workspace using it’s own API Key.
curl --request GET \
  --url https://apexal.overli.xyz/api/v1/workspace/ \
  --header 'Authorization: APIKEY' \
  --header 'Content-Type: application/json'
{
  "success": true,
  "details": {
    "WorkspaceName": "Kiasto",
    "WorkspaceID": "98fda-c4821-09uiq-ko923",
  }
}