Public API
Free, open REST API for the robotics data trust ecosystem. No API key required for read endpoints.
Overview
DataForAi provides a free, open REST API for programmatic access to the trust database. All responses are JSON. The base URL is https://dataforai.us.
# Example: check a company curl "https://dataforai.us/api/companies/neurvix"
Endpoints
/api/companiesSearch and list all tracked companies.
Parameters
qstring?Search query (name, website, founder)Example Response
{
"success": true,
"data": [
{
"id": "...",
"slug": "neurvix",
"name": "Neurvix",
"trustScore": 18,
"country": "India"
}
]
}/api/companies/:idGet full company profile including reports, red flags, and founders.
Parameters
idstringCompany ID or slugExample Response
{
"success": true,
"data": {
"id": "...",
"name": "Neurvix",
"trustScore": 18,
"trustScoreConfidence": "MEDIUM",
"redFlags": [
{
"flagType": "RATE_ABOVE_MARKET",
"severity": "HIGH"
}
],
"reports": []
}
}/api/reportsList verified reports, optionally filtered by company.
Parameters
companyIdstring?Filter by company IDstatusstring?EVIDENCE_VERIFIED | RESOLVED | PENDINGExample Response
{
"success": true,
"data": [
{
"id": "...",
"reportType": "NEGATIVE",
"promisedRate": 25,
"outcome": "WALKED_AWAY",
"status": "EVIDENCE_VERIFIED"
}
]
}/api/searchUnified search across companies and founders.
Parameters
qstringSearch query (min 2 chars)Example Response
{
"success": true,
"data": {
"companies": [
{
"slug": "neurvix",
"name": "Neurvix",
"trustScore": 18
}
]
}
}/api/benchmarks/dataRate benchmark data aggregated from verified reports.
Example Response
{
"success": true,
"data": [
{
"engagementType": "data_collection",
"marketMin": 8,
"marketMax": 10,
"reportedAvg": 22.5,
"sampleCount": 14
}
]
}Telegram Bot
Add @DataForAIBot to your Telegram group for instant company lookups (coming soon).
/check Neurvix# Returns trust score + top red flags for Neurvix/report# Opens a link to file a new report/benchmarks# Shows current rate benchmarks/help# Lists available commands
Webhook URL: https://dataforai.us/api/telegram/webhook
Rate Limits
| Endpoint type | Limit | Auth required |
|---|---|---|
| Read (GET) | 100 req/min per IP | No |
| Write (POST) | 10 req/min per user | Yes |
| Search | 60 req/min per IP | No |