Request
Query parameters
Example
Response
404 if no config exists with that name and tool combination.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
GET /api/configs/latest
GET /api/configs/latest?name=default&tool=claude
| Parameter | Type | Required | Description |
|---|---|---|---|
name | string | Yes | Config name |
tool | string | Yes | Tool ID |
teamId | string | No | Get team config instead |
curl "https://lazyraccoon.dev/api/configs/latest?name=default&tool=claude" \
-H "Authorization: Bearer lr_your_key"
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"name": "default",
"tool": "claude",
"version": 3,
"hash": "abc123...",
"data": { "CLAUDE.md": "My instructions", "settings.json": {} },
"updatedAt": "2026-03-13T12:00:00.000Z"
}
404 if no config exists with that name and tool combination.