v1 · REST · JSON

Public API

Free, open REST API for the robotics data trust ecosystem. No API key required for read endpoints.

No auth for reads 100 req/min rate limit

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

GET/api/companies

Search 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"
    }
  ]
}
GET/api/companies/:id

Get full company profile including reports, red flags, and founders.

Parameters

idstringCompany ID or slug

Example Response

{
  "success": true,
  "data": {
    "id": "...",
    "name": "Neurvix",
    "trustScore": 18,
    "trustScoreConfidence": "MEDIUM",
    "redFlags": [
      {
        "flagType": "RATE_ABOVE_MARKET",
        "severity": "HIGH"
      }
    ],
    "reports": []
  }
}
GET/api/reports

List verified reports, optionally filtered by company.

Parameters

companyIdstring?Filter by company ID
statusstring?EVIDENCE_VERIFIED | RESOLVED | PENDING

Example Response

{
  "success": true,
  "data": [
    {
      "id": "...",
      "reportType": "NEGATIVE",
      "promisedRate": 25,
      "outcome": "WALKED_AWAY",
      "status": "EVIDENCE_VERIFIED"
    }
  ]
}
GET/api/benchmarks/data

Rate 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 typeLimitAuth required
Read (GET)100 req/min per IPNo
Write (POST)10 req/min per userYes
Search60 req/min per IPNo