Discover/CAPA API
live

CAPA APIcapa.com

Access CAPA Columbus performing arts events via API. Get titles, dates, venues, ticket links, and images for theater shows, concerts, and live performances.

This API takes change requests — .
Endpoint health
verified 3d ago
get_events
1/1 passing latest checkself-healing
Endpoints
1
Updated
29d ago

What is the CAPA API?

The CAPA API exposes upcoming productions from the Columbus Association for the Performing Arts through a single get_events endpoint that returns up to 10 fields per event, including title, venue name, event date text, ticket purchase links, and a main image URL. Results are paginated and ordered by most recent, making it straightforward to build event calendars or performance discovery tools tied to CAPA's Columbus-area lineup.

Try it
Page number for pagination. Must be a positive integer.
Number of events per page. Must be an integer between 1 and 100.
api.parse.bot/scraper/e8d3f4b2-b231-4cce-b128-06bb1285d292/<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/e8d3f4b2-b231-4cce-b128-06bb1285d292/get_events?page=1&per_page=5' \
  -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 capa-com-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: CAPA Events API — browse performing arts events in Columbus."""
from parse_apis.capa_events_api import Capa, EventPageNotFound

client = Capa()

# List upcoming events with a small cap to keep the demo fast.
for event in client.events.list(limit=5):
    print(event.title, "|", event.venue, "|", event.event_date_text)

# Drill into the first event for full detail.
first = client.events.list(limit=1).first()
if first:
    print(first.title, first.detail_url)
    print("Ticket links:", first.ticket_links)
    print("Published:", first.date_published)

# Typed error handling for an out-of-range page.
try:
    far_page = client.events.list(limit=3)
    for ev in far_page:
        print(ev.title)
except EventPageNotFound as exc:
    print(f"Page not found: {exc.page}")

print("exercised: events.list / event field access / EventPageNotFound catch")
All endpoints · 1 totalmissing one? ·

Fetch paginated CAPA events/productions. Returns event details including title, detail URL, rendered HTML content, publication and modification dates, event date text extracted from content, venue name, ticket purchase links, and main image URL. Results are ordered by most recently published first. Paginated via page number; total count and total pages are included in the response.

Input
ParamTypeDescription
pageintegerPage number for pagination. Must be a positive integer.
per_pageintegerNumber of events per page. Must be an integer between 1 and 100.
Response
{
  "type": "object",
  "fields": {
    "page": "integer - current page number",
    "total": "integer - total number of events available",
    "events": "array of Event objects with id, title, detail_url, content_rendered, date_published, date_modified, event_date_text, venue, ticket_links, image_url",
    "per_page": "integer - number of events per page",
    "total_pages": "integer - total number of pages"
  }
}

About the CAPA API

What the API Returns

The get_events endpoint returns a paginated list of CAPA productions. Each event object includes a title, a detail_url for the full production page, rendered HTML content, publication_date and modification_date timestamps, an event_date text string extracted from the event content, a venue_name, an array of ticket_links for purchasing, and a main_image_url. The top-level response also carries total (count of all available events), total_pages, page, and per_page for navigation.

Pagination and Filtering

Two optional query parameters control pagination: page (a positive integer) and per_page (an integer between 1 and 100). There is no server-side filter for date range, venue, or event category — all filtering against specific attributes must be done client-side after retrieving results. Results are ordered by most recent by default.

Coverage and Scope

The API covers publicly listed CAPA productions in Columbus, Ohio. Data reflects what CAPA publishes on their site for upcoming and current productions, including performing arts categories such as theater, concerts, and live performances. Historical or archived events that are no longer publicly listed are not guaranteed to be accessible. The event_date field is extracted from event content as text, so downstream parsing may be needed to convert it into a structured date format.

Reliability & maintenanceVerified

The CAPA API is a managed, monitored endpoint for capa.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when capa.com 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 capa.com 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.

Last verified
3d ago
Latest check
1/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 Columbus performing arts calendar that displays event titles, venues, and dates from CAPA's current lineup.
  • Aggregate ticket purchase links across CAPA productions to surface them in a unified ticketing dashboard.
  • Display promotional imagery for CAPA shows using the main_image_url field in a visual event guide.
  • Monitor CAPA's event schedule for additions or changes by comparing modification_date values across polling intervals.
  • Power a venue-specific event feed by filtering returned events by venue_name on the client side.
  • Notify subscribers about newly published CAPA productions by tracking publication_date against a previously stored snapshot.
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 CAPA have an official public developer API?+
CAPA does not publish a documented public developer API. This Parse API provides structured access to CAPA event data that would otherwise require manual browsing of their website.
What does the `get_events` endpoint actually return for each event?+
Each event object includes the title, a detail URL, rendered HTML content, publication and modification timestamps, an event date text string, venue name, ticket purchase links, and a main image URL. The top-level response includes total event count, current page, per-page count, and total pages.
Can I filter events by date range or event category through the API?+
The get_events endpoint does not support server-side filtering by date range, venue, or category. The only parameters are page and per_page for pagination. Any attribute-based filtering needs to happen client-side after fetching results. You can fork this API on Parse and revise it to add server-side filtering if your use case requires it.
Is the event date returned as a structured timestamp or plain text?+
The event_date field is returned as a text string extracted from the event content rather than a normalized ISO timestamp. You may need to parse it further depending on how your application consumes dates.
Does the API cover events from CAPA venues outside Columbus, or include past/archived events?+
The API covers publicly listed CAPA productions, which are centered on Columbus, Ohio. Historical or archived events no longer publicly listed are not reliably accessible, and there is no dedicated endpoint for past events. You can fork this API on Parse and revise it to add an endpoint targeting archived or historical CAPA productions if that data becomes available on their site.
Page content last updated . Spec covers 1 endpoint from capa.com.
Related APIs in EntertainmentSee all →