API Documentation

This page documents our various API endpoints to allow you to interact with your link and verify the integrity of sessions

Base URL: link.eleutheri.com/v1/

Replace :prefix with your link URL prefix

Authentication is required for nearly all endpoints

GET /project/:prefix

Get information about a specific link

Headers

NameValue

lg_access_token

<api-key>

Response

{
    ...link data
}

Get License Session

Replace :license with the license key

Authentication not required for this endpoint

GET /project/:prefix/licenses/:license

This endpoint is used for getting information on a provided license key

Headers

NameValue

lg_access_token

<api_key>

Response

{
  "valid": true,
  "license_key": "lghSud32",
  "expire": "1727222167247",
  "project": "examplelink",
  "discord_id": "787086729470541844",
  "ip": "1.1.1.1"
}

Get Discord ID Session

Replace :discordID with the Discord ID

Authentication not required for this endpoint

GET /project/:prefix/discord/:discordID

This endpoint is used for getting information on a provided Discord ID

Response

{
  "valid": true,
  "expire": "1727222167247",
  "discord_id": "787086729470541844",
  "ip": "1.1.1.1"
}

Last updated