POST
/
applications
/
register
Register Application
curl --request POST \
  --url https://ebn.telemetree.io/public-api/applications/register \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "name": "<string>",
  "handle": "<string>",
  "link": "<string>",
  "description": "",
  "photo_url": "<string>"
}'
{
  "status_code": 201,
  "message": "Application registered successfully"
}

Authorizations

x-api-key
string
header
required

Your API Key (Dashboard->Settings)

Body

application/json
name
string
required

Application name

Required string length: 1 - 100
handle
string
required

Application handle (e.g. @myapp)

Required string length: 2 - 100

Application link (e.g. t.me/myapp)

Required string length: 1 - 2083
description
string
default:""

Application description

Maximum length: 500
photo_url
string<uri> | null

Application photo URL

Required string length: 1 - 2083

Response

Successful Response

status_code
integer
default:201
message
string
default:Application registered successfully