Skip to main content
GET
/
api
/
v1
/
channels
Get all telegram channels for the current user
curl --request GET \
  --url https://api.paylora.org/api/v1/channels \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "total": 123,
  "data": [
    {
      "uuid": "a1b2c3d4-e5f6-7890-1234-567890abcdef",
      "channel_id": "-1001234567890",
      "channel_title": "My Channel",
      "user_uuid": "a1b2c3d4-e5f6-7890-1234-567890abcdef"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Paginated list

success
boolean
total
integer
data
object[]