AKC Event Search & Show Results Scraper avatar

AKC Event Search & Show Results Scraper

Pricing

Pay per event

Go to Apify Store
AKC Event Search & Show Results Scraper

AKC Event Search & Show Results Scraper

Scrapes AKC-sanctioned dog show events and competition results from the American Kennel Club event search. Returns event details including venue, club, dates, superintendent, premium list and entry information for conformation, agility, obedience, rally, and other event types.

Pricing

Pay per event

Rating

0.0

(0)

Developer

BowTiedRaccoon

BowTiedRaccoon

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

3 days ago

Last modified

Categories

Share

Scrapes AKC-sanctioned dog show events and competition results from the American Kennel Club event search. Returns event details including venue, club, dates, superintendent, premium list and entry information for conformation, agility, obedience, rally, and other event types.

What it does

Queries the AKC Event Search API (https://webapps.akc.org/event-search/api/search/events) and returns structured event records for all competition types: conformation, agility, obedience, rally, scent work, field trials, herding, earthdog, lure coursing, tracking, and more.

The actor splits a user-provided date range into 2-week windows (staying under the API's 1,000-event-per-request cap) and issues one POST request per window, collecting all results.

Use cases

  • Find upcoming dog shows in your area for a specific date range
  • Track competition schedules for clubs, kennel clubs, or individual exhibitors
  • Monitor entry opening/closing dates for specific events
  • Build event calendars or integration feeds for dog show participants

Input

FieldTypeDescription
startDatestringStart date in MM/DD/YYYY format. Defaults to today.
endDatestringEnd date in MM/DD/YYYY format. Defaults to 180 days from today.
maxItemsintegerMaximum number of event records to return. Default: 0 (no limit).

Output

One record per AKC event. Fields include:

FieldDescription
event_idAKC internal event ID
event_numberAKC event number (used in event URLs)
event_nameEvent name (usually the kennel club name)
event_typeCompetition type code (e.g. AB/LB, AGT ACNT, OBT)
event_statusApproval status (e.g. Approved)
competition_groupCompetition group (Conformation, Companion, Performance, etc.)
competition_methodCompetition method (All Breed, Specialty, Hunting Test, etc.)
club_nameHost kennel club name
venue_nameVenue/site name
venue_cityVenue city
venue_stateVenue state code
venue_zipVenue postal code
latitude / longitudeGPS coordinates
start_date / end_dateEvent date range (YYYY-MM-DD)
daysNumber of event days
entry_open_date / entry_close_dateEntry window (epoch milliseconds)
superintendentSuperintendent/secretary name and contact info
is_accepting_online_entriesWhether online entries are open
is_premium_list_availableWhether premium list is available
is_results_availableWhether judging program/results are posted
profile_urlAKC event detail page URL
scraped_atISO timestamp of when the record was scraped

Example input

{
"startDate": "06/01/2026",
"endDate": "06/30/2026",
"maxItems": 100
}

Notes

  • The AKC Event Search API returns up to 1,000 events per request. The actor automatically splits large date ranges into 2-week windows to avoid truncation.
  • No authentication or proxy is required — the AKC API is publicly accessible.
  • A typical 6-month range returns several thousand events across all competition types.