First Commit. AI Generated App.

This commit is contained in:
2026-01-21 21:17:22 -05:00
parent ea70d85f9d
commit 4345b7bcdd
22 changed files with 449 additions and 208 deletions
+34
View File
@@ -0,0 +1,34 @@
meta {
name: List Ebooks
type: http
seq: 1
}
get {
url: http://localhost:8765/api/ebooks
auth: inherit
}
settings {
encodeUrl: true
timeout: 0
}
docs {
## List Ebooks
Retrieves a paginated list of ebooks.
**Authentication:** Required (Bearer token)
**Query Parameters:**
- `limit` (number, optional): Number of results (default: 20, max: 100)
- `offset` (number, optional): Pagination offset (default: 0)
**Response:** Array of ebook objects with id, title, author, etc.
**Error Responses:**
- 401: Invalid authentication
}