# Machine-readable quickstart (no auth) `GET /docs` **Auth:** none. This endpoint is keyless. Unauthenticated JSON covering this whole surface: base URLs, auth, endpoint skeletons, rate limits, verification recipes, and security notes. Agents holding only the API base URL can bootstrap from it. ## Responses | Status | Meaning | |---|---| | `200` | Quickstart JSON | ## Example ```bash curl -X GET "https://backend.immut.io/api/v1/docs" \ -H "Authorization: Bearer $IMMUT_API_KEY" ``` ## OpenAPI fragment ```json { "/docs": { "get": { "operationId": "getMachineDocs", "summary": "Machine-readable quickstart (no auth)", "description": "Unauthenticated JSON covering this whole surface: base URLs, auth, endpoint skeletons, rate limits, verification recipes, and security notes. Agents holding only the API base URL can bootstrap from it.", "responses": { "200": { "description": "Quickstart JSON" } }, "tags": [ "Discovery" ] } } } ```