Robocensus

Robocensus — Every robot that walks.

Data

The census is data. Here it is.

License

Current census data is free under CC BY 4.0 . Attribute it as: Data: Robocensus — robocensus.com.

The CC BY 4.0 license covers the census data — names, specs, prices, links. Robot photographs are not included: each image carries its own credit and permissions, displayed beside it, and may not be reused under the data license.

The full change history and commercial licensing: [email protected].

Endpoints

  • GET /api/robots.json — every robot's current record.
  • GET /api/robots/<slug>.json — one robot, e.g. /api/robots/unitree-g1.json.

Example — a single robot record:

{
  "schema_version": 1,
  "generated_at": "2026-09-16T23:56:04.268Z",
  "license": "CC-BY-4.0",
  "attribution": "Robocensus — robocensus.com",
  "source": "https://robocensus.com/data",
  "robot": {
    "slug": "unitree-g1",
    "name": "G1",
    "maker": "Unitree",
    "category": "humanoid",
    "locomotion": "legged",
    "status": "commercial",
    "release_date": null,
    "price": {
      "amount": 13500,
      "currency": "USD",
      "date": "2026-09-03"
    },
    "specs": {
      "height_cm": 132,
      "weight_kg": 35,
      "payload_kg": 2,
      "battery_runtime_hr": 2,
      "degrees_of_freedom": 23,
      "hands": "None standard (optional 7-DoF three-finger dexterous hand on EDU tier only)",
      "configuration": "Base"
    },
    "product_url": "https://www.unitree.com/g1/",
    "links": {
      "video": null,
      "docs": null,
      "price_source": null
    },
    "canonical_url": "https://robocensus.com/robots/unitree-g1/",
    "image": {
      "status": "photo",
      "url": "https://robocensus.com/robots/unitree-g1.webp",
      "credit": {
        "author": "Sayanesy",
        "license": "CC0 1.0",
        "source_url": "https://commons.wikimedia.org/wiki/File:Unitree_G1.jpg"
      }
    }
  }
}

Fields on each robot record

  • slug — Kebab-case identifier, e.g. "tesla-optimus" — used in URLs and filenames.
  • name — Model name.
  • maker — Manufacturer or organization.
  • category — "humanoid", "quadruped", or "biped".
  • locomotion — "legged", "wheel-legged", or "hybrid".
  • status — "concept", "prototype", "pilot", "commercial", "discontinued", or "retired".
  • release_date — ISO date, or null if unknown.
  • price — amount (number or null) and currency (ISO 4217) and date the price was last confirmed — currency and date are null whenever amount is null, never a currency with no amount.
  • specs — Category-specific fields (height_cm, weight_kg, etc.) — varies by category.
  • product_url — The manufacturer's official product page.
  • links — video, docs, and price_source URLs — each null when not published for this robot.
  • canonical_url — This robot's page on robocensus.com.
  • image — status ("photo" or "glyph"), url, and credit (present only for Creative Commons images). image.url is outside the CC BY data license — see above.

Good to know

  • These are static snapshots regenerated on every deploy, not a live query API — sources themselves are re-checked on a rolling 3-day cycle.
  • The schema may still evolve before a 1.0 — that's what schema_version is for.
← Back to the homepage