Skip to main content

List Providers

Get list of signal providers.
curl https://api.dmxt.xyz/providers?page=1&limit=20

Query Parameters

ParameterTypeDefaultDescription
pageinteger1Page number
limitinteger20Items per page (max 100)
sortBystring”followerCount”Sort field
orderstring”desc""asc” or “desc”

Get Provider

Get provider details.
curl https://api.dmxt.xyz/providers/5

Follow Provider

Follow a provider (requires authentication).
curl -X POST https://api.dmxt.xyz/providers/5/follow \
  -H "Authorization: Bearer <token>"

Unfollow Provider

Unfollow a provider.
curl -X DELETE https://api.dmxt.xyz/providers/5/follow \
  -H "Authorization: Bearer <token>"

Provider Stats

Get detailed statistics for a provider.
curl https://api.dmxt.xyz/providers/5/stats

My Following

Get providers you follow.
curl https://api.dmxt.xyz/me/following \
  -H "Authorization: Bearer <token>"