# Sb Augsburg Lmscloud — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search the Stadtbücherei Augsburg library catalog to find books and check their real-time availability, including loan status and due dates. Instantly discover whether your desired titles are available to borrow or when they'll be returned to the shelves.

**Category:** Education | **Website:** [sb-augsburg.lmscloud.net/](https://sb-augsburg.lmscloud.net/) | **Docs:** [parse.bot/marketplace/b2161a07-7cfe-4229-969e-e078d153efdb/sb-augsburg-lmscloud-net-api](https://parse.bot/marketplace/b2161a07-7cfe-4229-969e-e078d153efdb/sb-augsburg-lmscloud-net-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-sb-augsburg-lmscloud-net-api-b2161a07/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_book_availability

Retrieve detailed availability and loan information for a specific book identified by its biblionumber. Returns per-copy status including whether each copy is on loan and its due date.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `biblionumber` | string | Yes | Numeric catalog record identifier (biblionumber from search_catalog results). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-sb-augsburg-lmscloud-net-api-b2161a07/get_book_availability \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"biblionumber":"<string>"}'
```

### search_catalog

Full-text search across the library catalog. Returns book records with availability summaries indicating which items are on loan, available, or in processing. Results are paginated at 20 per page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for paginated results (20 results per page). |
| `query` | string | Yes | Search query matching title, author, subject, or ISBN. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-sb-augsburg-lmscloud-net-api-b2161a07/search_catalog \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","query":"<string>"}'
```
