Marketplace
No threads yet
Live

get_venue_details

ra.co

Gets a detailed club or venue profile from https://ra.co, including contact information, description, capacity, location, top artists, follower count, and yearly event activity. Incomplete profile values are returned as null.

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_venue_details?

Gets a detailed club or venue profile from https://ra.co, including contact information, description, capacity, location, top artists, follower count, and yearly event activity. Incomplete profile values are returned as null. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass venue_id and get the result back without maintaining a scraper.

Response

{
  "venue": {
    "id": "<string>",
    "tba": true,
    "area": {
      "id": "<string>",
      "name": "<string>",
      "parent": {
        "id": "<string>",
        "name": "<string>",
        "url_name": "<string>"
      },
      "url_name": "<string>",
      "parent_id": "<string>",
      "country_id": 0,
      "is_country": true,
      "population": 0,
      "events_count": 0,
      "venues_count": 0,
      "iana_time_zone": "<string>"
    },
    "live": true,
    "name": "<string>",
    "index": "<string>",
    "phone": "<string>",
    "address": "<string>",
    "country": {
      "id": "<string>",
      "name": "<string>",
      "iso_code": "<string>",
      "url_code": "<string>"
    },
    "ra_says": true,
    "website": "<string>",
    "capacity": "<string>",
    "location": {
      "latitude": 0,
      "longitude": 0
    },
    "logo_url": "<string>",
    "is_closed": true,
    "photo_url": "<string>",
    "content_url": "<string>",
    "description": "<string>",
    "top_artists": [
      {
        "id": "<string>",
        "name": "<string>",
        "image_url": "<string>",
        "content_url": "<string>",
        "url_safe_name": "<string>"
      }
    ],
    "follower_count": 0,
    "listing_item_id": 0,
    "event_count_this_year": 0
  }
}

Call it

curl --location 'https://us-prod.notte.cc/functions/ec4cae83-9e97-4a1c-8ca8-fa69db15cdbf/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "ec4cae83-9e97-4a1c-8ca8-fa69db15cdbf",
    "variables": {
        "venue_id": "237"
    }
}'

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="ec4cae83-9e97-4a1c-8ca8-fa69db15cdbf") — the "get_venue_details" function, which gets a detailed club or venue profile from https://ra.co, including contact information, description, capacity, location, top artists, follower count, and yearly event activity. Incomplete profile values are returned as null..

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