Marketplace
No threads yet
Live

search_catalog_books

sb-augsburg.lmscloud.net

Searches the Stadtbücherei Augsburg catalog at https://sb-augsburg.lmscloud.net. Returns a paginated 20-record page with all exposed record fields and live available, on-loan, processing, and ordered-copy summaries.

Parameters2
Runs9
Updated10d ago
Operational9 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is search_catalog_books?

Searches the Stadtbücherei Augsburg catalog at https://sb-augsburg.lmscloud.net. Returns a paginated 20-record page with all exposed record fields and live available, on-loan, processing, and ordered-copy summaries. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, page and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "query": "<string>",
  "records": [
    {
      "title": "<string>",
      "fields": {},
      "authors": [
        {
          "name": "<string>",
          "details": {}
        }
      ],
      "detail_url": "<string>",
      "availability": {
        "text": "<string>",
        "entries": [
          {
            "count": 0,
            "details": {},
            "category": "<string>"
          }
        ],
        "on_loan_copies": 0,
        "ordered_copies": 0,
        "available_copies": 0,
        "processing_copies": 0,
        "other_unavailable_copies": 0
      },
      "biblionumber": "<string>",
      "cover_image_urls": [
        "<string>"
      ]
    }
  ],
  "per_page": 0,
  "total_pages": 0,
  "total_results": 0,
  "returned_results": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/5d036c54-cbc5-47a0-9cc5-adf41e71e145/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "5d036c54-cbc5-47a0-9cc5-adf41e71e145",
    "variables": {
        "query": "Harry Potter",
        "page": 1
    }
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="5d036c54-cbc5-47a0-9cc5-adf41e71e145") — the "search_catalog_books" function, which searches the Stadtbücherei Augsburg catalog at https://sb-augsburg.lmscloud.net. Returns a paginated 20-record page with all exposed record fields and live available, on-loan, processing, and ordered-copy summaries..

It takes query (str), page (int). Return the result as structured JSON.