Enterprise API
Secure REST access for groups, categories, states, languages, platforms, search and trending data.
Authentication
X-API-KEY: API_KEY
X-API-SECRET: API_SECRET
Endpoints
| GET | /api/v1/groups | Filter by category, platform, state, language, featured, verified or trending. |
| GET | /api/v1/groups/{slug} | Single approved listing. |
| GET | /api/v1/search?keyword=news | Search approved listings. |
| GET | /api/v1/trending | Top trending groups. |
| GET | /api/v1/categories | Active categories. |
| GET | /api/v1/platforms | Active platforms. |
PHP Example
$response = Http::withHeaders([
'X-API-KEY' => 'API_KEY',
'X-API-SECRET' => 'API_SECRET',
])->get('https://qksocial.com/api/v1/trending');