Docs

Dial the Engine.

Matter-DB exposes the universal physics API through a single endpoint. Copy the cURL, paste into your terminal, and see the data pulse back.

Request Packet

Analyze an object

Send a natural language description. Matter-DB responds with mass, friction, fragility, and handling heuristics.

Return Payload

Physics DNA

Every attribute is grounded in material science references so robotic grippers and game engines behave like the real world.

Bash
curl -X POST https://api.matter-db.com/v1/analyze \
  -H "Authorization: Bearer sk_matter_..." \
  -d '{"object": "Red Brick"}'
JSON
{
  "mass": "2.4kg",
  "friction": 0.65,
  "fragility": 0.05
}

Psychology

Curl commands signal reality.

Developers see the terminal call, feel the latency, and trust the response. This single block converts lurkers into builders.

Back to Scanner