API Documentation
Base URL
http://www.flawlesstechdata.in/api/
Authentication
All API requests require an API Key.
Include your API Key in request header:
X-API-KEY: your_api_key_here
⚠️ If API key is missing or invalid, request will be rejected.
CIN Data API
Endpoint:
POST /api/cin
Example Request (cURL)
curl -X POST "http://www.flawlesstechdata.in/api/cin" \
-H "Content-Type: application/json" \
-H "X-API-KEY: your_api_key_here" \
-d '{"cin":"U12345TN2020PTC123456"}'
Example Request (Python)
import requests
url = "http://www.flawlesstechdata.in/api/cin"
headers = {
"X-API-KEY": "your_api_key_here",
"Content-Type": "application/json"
}
data = {
"cin": "U12345TN2020PTC123456"
}
response = requests.post(url, json=data, headers=headers)
print(response.json())
Example Response
{
"company_data": {
"cin": "U12345TN2020PTC123456",
"company_name": "ABC PRIVATE LIMITED",
"company_type": "Private",
"state": "Tamil Nadu",
"status": "Active"
},
"directors_data": [
{
"name": "John Doe",
"din": "01234567"
}
],
"charges_data": []
}
DIN Contact API
Endpoint:
POST /api/din
Example
POST /api/din
Header:
X-API-KEY: your_api_key_here
Data:
din: 01234567
Mobile Lookup API
Endpoint:
POST /api/mobile
Example
POST /api/mobile
Header:
X-API-KEY: your_api_key_here
Data:
mobile: 9876543210
Error Codes
| Status Code | Description |
|---|---|
| 401 | Invalid API Key |
| 403 | Insufficient Credits |
| 404 | Data Not Found |
| 500 | Server Error |
Credit System
- Each API call deducts 1 credit.
- If credits are 0, request will fail.
- You can request more credits from dashboard.