Marketplace
No threads yet
Live

search_checklist_links

beckett.com

Scans a page on https://beckett.com and returns every link whose text, title, or aria-label contains checklist, with link text, URL, title, and aria-label.

Parameters1
Runs6
Updated3d ago
Operational6 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_checklist_links?

Scans a page on https://beckett.com and returns every link whose text, title, or aria-label contains checklist, with link text, URL, title, and aria-label. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass page_url and get the result back without maintaining a scraper.

Response

{
  "count": 0,
  "links": [
    {
      "url": "<string>",
      "text": "<string>",
      "title": "<string>",
      "aria_label": "<string>"
    }
  ],
  "page_url": "<string>",
  "page_title": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/817a58c8-4bfa-4065-9f2a-8df5ac845b2d/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "817a58c8-4bfa-4065-9f2a-8df5ac845b2d",
    "variables": {
        "page_url": "DEFAULT_PAGE_URL"
    }
}'

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="817a58c8-4bfa-4065-9f2a-8df5ac845b2d") — the "search_checklist_links" function, which scans a page on https://beckett.com and returns every link whose text, title, or aria-label contains checklist, with link text, URL, title, and aria-label..

It takes page_url (str). Return the result as structured JSON.