Marketplace
No threads yet
Live

search_writers_and_composers

repertoire.bmi.com

Searches https://repertoire.bmi.com for Songview writers and composers, returning names, IPI numbers, affiliations, title previews, and catalog identifiers.

Parameters4
Runs5
Updated5h ago
Operational5 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_writers_and_composers?

Searches https://repertoire.bmi.com for Songview writers and composers, returning names, IPI numbers, affiliations, title previews, and catalog identifiers. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, page, page_size, search_scope and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "query": "<string>",
  "writers": [
    {
      "name": "<string>",
      "ipi_number": "<string>",
      "catalog_cae": "<string>",
      "catalog_num": "<string>",
      "affiliations": [
        "<string>"
      ],
      "preview_titles": [
        "<string>"
      ],
      "catalog_part_type": "<string>",
      "catalog_part_id_sub": "<string>",
      "has_additional_titles": true
    }
  ],
  "page_size": 0,
  "total_pages": 0,
  "search_scope": "<string>",
  "has_next_page": true,
  "total_results": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/d1c07f62-7345-4095-a985-0e2e84914741/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "d1c07f62-7345-4095-a985-0e2e84914741",
    "variables": {
        "query": "Eden Joel",
        "page": 1,
        "page_size": 20,
        "search_scope": "all"
    }
}'

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="d1c07f62-7345-4095-a985-0e2e84914741") — the "search_writers_and_composers" function, which searches https://repertoire.bmi.com for Songview writers and composers, returning names, IPI numbers, affiliations, title previews, and catalog identifiers..

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