Marketplace
No threads yet
Live

get_stadtbuecherei_augsburg_book_availability

sb-augsburg.lmscloud.net

Retrieves real-time per-copy availability for a Stadtbücherei Augsburg book from https://sb-augsburg.lmscloud.net. Returns each copy's status, loan flag, due date when present, location, call number, barcode, and all other exposed record fields.

Parameters1
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 get_stadtbuecherei_augsburg_book_availability?

Retrieves real-time per-copy availability for a Stadtbücherei Augsburg book from https://sb-augsburg.lmscloud.net. Returns each copy's status, loan flag, due date when present, location, call number, barcode, and all other exposed record fields. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass biblionumber and get the result back without maintaining a scraper.

Response

{
  "title": "<string>",
  "copies": [
    {
      "loan": {},
      "fields": {},
      "status": "<string>",
      "copy_number": 0
    }
  ],
  "copy_count": 0,
  "detail_url": "<string>",
  "biblionumber": 0,
  "record_fields": {},
  "on_loan_copies": 0,
  "available_copies": 0,
  "cover_image_urls": [
    "<string>"
  ],
  "copy_field_labels": {},
  "processing_copies": 0,
  "other_unavailable_copies": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/76bc3cfd-bc4b-4b75-8536-935359764ef6/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "76bc3cfd-bc4b-4b75-8536-935359764ef6",
    "variables": {
        "biblionumber": 833211
    }
}'

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="76bc3cfd-bc4b-4b75-8536-935359764ef6") — the "get_stadtbuecherei_augsburg_book_availability" function, which retrieves real-time per-copy availability for a Stadtbücherei Augsburg book from https://sb-augsburg.lmscloud.net. Returns each copy's status, loan flag, due date when present, location, call number, barcode, and all other exposed record fields..

It takes biblionumber (int). Return the result as structured JSON.