API Documentation
Complete documentation for the IntelGain API
Base URL
https://api.intelgain.io
Authentication
All API endpoints require authentication via an API key, which should be included in the request headers.
X-API-Key: your_api_key
Search
GET /search
Search by name.
Parameters:
- name (required): String to search for
{ "data": [...search results...], "usage": { "daily_requests": 7, "daily_limit": 8, "remaining": 1, "total_requests": 10 } }
Phone Search
GET /search
Search by phone number.
Parameters:
- phone (required): The phone number to search for, in the format of a string (e.g., "9402431558")
{ "data": [...search results...], "usage": { "daily_requests": 7, "daily_limit": 8, "remaining": 1, "total_requests": 10 } }
Check API Key Status
GET /check
Check your API key's usage and limits.
{ "api_key": "your_key", "daily_requests": 7, "daily_limit": 8, "remaining": 1 }
Trial Search
GET /trial-search
Limited search functionality without an API key.
Parameters:
- name (required): String to search for
{ "message": "Trial data. Sign up for full access.", "searches_remaining": 4, "data": [...limited results...] }