inis.run
API reference

Organisation

Aggregate session capacity and limits for your account.

A small read-only endpoint for seeing how much of your capacity is in use.

All requests require Authorization: Bearer inis_....

Capacity

GET/v1/org

Returns live session counts for your account alongside your per-account limits.

Response 200

{
  "capacity": {
    "running": 3,
    "warm": 10,
    "limits": {
      "running": 20,
      "warm": 50
    }
  }
}
  • running — live sessions (including ones still starting up).
  • warm — paused sessions, ready to resume.
  • limits — the ceilings for your account.

The CLI surfaces the same view with inis org.

On this page