Discover/Findandgoseek API
live

Findandgoseek APIfindandgoseek.net

Retrieve Vermont family event details from findandgoseek.net: title, date/time, venue, address, age groups, cost, contact info, and images via one API endpoint.

This API takes change requests — .
Endpoint health
monitored
get_event
0/1 passing latest checkself-healing
Endpoints
1
Updated
3h ago

What is the Findandgoseek API?

The Find & Go Seek API gives developers programmatic access to community event listings from findandgoseek.net, a Vermont-focused family events directory. The single get_event endpoint returns 11 structured fields per event — including title, date/time range, venue address, contact details, age groups, cost, and image URL — identified by the event's page URL or path, with support for recurring event instances via query parameters.

Try it
Event page URL or path on findandgoseek.net (e.g. '/kids-garden-jaycee-park?c=20260715T090000&i=3&e=20260715T100000' or the full URL).
api.parse.bot/scraper/2b953d2e-ef53-494b-8254-d7f19465fda3/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/2b953d2e-ef53-494b-8254-d7f19465fda3/get_event?url=%2Fkids-garden-jaycee-park%3Fc%3D20260715T090000%26i%3D3%26e%3D20260715T100000' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace findandgoseek-net-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.


"""Walkthrough: Find & Go Seek SDK — bounded, re-runnable; every call capped."""
from parse_apis.findandgoseek_net_api import FindAndGoSeek, EventNotFound

client = FindAndGoSeek()

# Fetch a community event by its URL path
event = client.events.get(url="/kids-garden-jaycee-park?c=20260715T090000&i=3&e=20260715T100000")
print(event.title, event.date_time)
print(event.venue_name, event.address)
print(event.age_groups, event.cost)
print(event.categories)

# Typed error handling for a missing event
try:
    gone = client.events.get(url="/nonexistent-event-xyz")
    print(gone.title)
except EventNotFound as e:
    print(f"not found: {e.url}")

print("exercised: events.get")
All endpoints · 1 totalmissing one? ·

Retrieve full details for a community event given its page URL. Returns event title, date/time, venue, address, contact info, age groups, description, cost, categories, and image. Each event page is uniquely identified by its slug and optional query parameters (c, i, e) for recurring event instances.

Input
ParamTypeDescription
urlrequiredstringEvent page URL or path on findandgoseek.net (e.g. '/kids-garden-jaycee-park?c=20260715T090000&i=3&e=20260715T100000' or the full URL).
Response
{
  "type": "object",
  "fields": {
    "url": "string — canonical URL of the event page",
    "cost": "string — cost info (e.g. 'Free') or empty if not specified",
    "email": "string — contact email address",
    "phone": "string — contact phone number",
    "title": "string — event name",
    "address": "string — full street address including city, state, and zip",
    "website": "string — venue or organizer website URL",
    "date_time": "string — formatted date and time range",
    "image_url": "string — URL of the event image",
    "age_groups": "string — comma-separated target age groups",
    "categories": "array of strings — event category tags",
    "venue_name": "string — name of the venue or organizer",
    "description": "string — full event description text"
  },
  "sample": {
    "data": {
      "url": "https://findandgoseek.net/kids-garden-jaycee-park?c=20260715T090000&i=3&e=20260715T100000",
      "cost": "Free",
      "email": "[email protected]",
      "phone": "+1 (555) 012-3456",
      "title": "Kids Garden @ Jaycee Park",
      "address": "Jaycee Park, 113 Patchen Rd, South Burlington, VT 05403",
      "website": "https://southburlingtonlibrary.org/",
      "date_time": "Wednesday, July 15, 2026 @  9:00 am - 10:00 am",
      "image_url": "https://findandgoseek.net/client_media/crops/events/garden%20social%20website%20%282%29.ddad12b6.a320f169.jpg",
      "age_groups": "Kinder, Kids, Tweens",
      "categories": [
        "Summer Fun",
        "Outdoor Activities"
      ],
      "venue_name": "South Burlington Public Library",
      "description": "South Burlington Parks and Rec and the South Burlington Public Library invite kids in kindergarten and up, to join us at Jaycee Park, 113 Patchen Rd for hands-on gardening experience!\nBeginning Wednesday, June 24 until August 5 from 9-10am. Rain or shine!"
    },
    "status": "success"
  }
}

About the Findandgoseek API

What the API Returns

The get_event endpoint accepts a url parameter — either a full URL or a relative path on findandgoseek.net — and returns a structured record for that specific community event. The response includes the event title, a formatted date_time range, the full address (street, city, state, zip), and an image_url for the event photo. Organizer contact fields (email, phone, website) are included when available, along with cost info such as 'Free' or a fee description.

Recurring Events and Age Groups

Find & Go Seek lists many recurring events, and the url input supports the site's query parameters (c, i, e) to target a specific instance of a recurring event. This means you can retrieve the correct date/time data for weekly or monthly events rather than always hitting the first occurrence. The age_groups field returns a comma-separated list of intended audiences (e.g., toddlers, school-age, teens), which is useful for filtering or categorizing events in child-facing applications.

Coverage and Scope

All event data is scoped to listings on findandgoseek.net, which focuses on family-friendly activities primarily in Vermont. The canonical url field in each response confirms the resolved event page. Fields like cost and email may return empty strings when a listing does not include that information — consumers should handle optional fields defensively.

Reliability & maintenance

The Findandgoseek API is a managed, monitored endpoint for findandgoseek.net — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when findandgoseek.net changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official findandgoseek.net API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Latest check
0/1 endpoint passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a Vermont family events calendar app using date_time, address, and age_groups fields
  • Aggregate free local events by filtering on cost returning 'Free'
  • Display venue contact details (phone, email, website) in a community events widget
  • Create age-targeted event digests by parsing the age_groups comma-separated field
  • Populate event cards with title, image_url, and date_time for a family-focused newsletter
  • Track recurring event schedules by passing different c and i query parameters for the same event slug
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does findandgoseek.net have an official developer API?+
No. findandgoseek.net does not publish an official developer API or documented data access layer for its event listings.
What does the get_event endpoint return for recurring events?+
When an event recurs, you can target a specific instance by including the site's c, i, and e query parameters in the url input. The response will reflect the date_time for that particular occurrence rather than a generic or first-instance date. This allows you to retrieve correct scheduling data for weekly or monthly events.
Does the API return a list of all events, or support searching by category or date?+
Not currently. The API covers fetching full details for a single known event page via get_event. It does not expose a search, browse, or listing endpoint for querying events by date range, category, or location. You can fork this API on Parse and revise it to add an endpoint that covers event discovery or search.
Are all response fields always populated?+
No. Fields like cost, email, phone, and website depend on what the event organizer has entered in the listing. These may return empty strings when the source listing omits them. The title, date_time, and address fields are generally present on well-formed event pages, but consumers should handle any field defensively.
Is event data from outside Vermont covered?+
Not currently. findandgoseek.net focuses on Vermont family-friendly events, so coverage is limited to that region. Events in other states are not listed on this source. You can fork this API on Parse and revise it to point at a broader regional events directory if wider geographic coverage is needed.
Page content last updated . Spec covers 1 endpoint from findandgoseek.net.
Related APIs in EntertainmentSee all →
vermont.com API
vermont.com API
allevents.in API
Search and discover events from AllEvents.in by name, date, or category, then view detailed information like descriptions, timings, and venue details. Filter through available event categories to find exactly what you're looking for.
gohawaii.com API
Access data from gohawaii.com.
humanitix.com API
Search and discover events on Humanitix, viewing detailed information including dates, times, locations, descriptions, and host names. Filter by keyword, category, price, and date to find events that match your interests.
seatgeek.com API
Search for events and performers, view ticket listings with pricing data, and explore venue information across multiple event categories. Get real-time insights into event details, ticket price trends, and what's currently trending to help you find and compare tickets.
rausgegangen.de API
Discover events happening in German cities by searching for concerts, festivals, and shows—filtering by location, date, or category to find exactly what you're looking for. Get detailed information about venues, artists, and ticket lotteries all in one place.
eventbrite.com API
Search Eventbrite for events by keyword, location, or category. Retrieve full event details, ticket pricing and availability, organizer profiles, and batch event data.
eventup.com API
Search EventUp for event venues by city, browse featured venues, fetch available venue filter facets for a location, and get autocomplete suggestions for venue and place queries.