Discover/Deutscher Galopp API
live

Deutscher Galopp APIdeutscher-galopp.de

Access German horse racing results, horse profiles, and prize money rankings from Deutscher Galopp via a structured REST API with 3 endpoints.

This API takes change requests — .
Endpoint health
verified 9h ago
get_race_results
search_horses
get_horse_rankings
3/3 passing latest checkself-healing
Endpoints
3
Verified account required
Updated
10h ago

What is the Deutscher Galopp API?

The Deutscher Galopp API exposes 3 endpoints covering German thoroughbred racing data from the official national racing authority. get_race_results returns full finishing-order details for a given race — positions, jockeys, trainers, odds, ground conditions, and prize money — while search_horses and get_horse_rankings let you look up individual horse profiles and retrieve prize-money-based performance tables going back to 1979.

This call costs1 credit / call— charged only on success
Try it
Race date in YYYYMMDD format (e.g. '20260822').
Numeric race identifier (e.g. '1364164'). Available from race day listings on the site.
api.parse.bot/scraper/780a3e63-1528-407c-853d-b4d59837cb2b/<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/780a3e63-1528-407c-853d-b4d59837cb2b/get_race_results?date=20260822&race_id=1364164' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 3 totalmissing one? ·

Get detailed results for a specific horse race, including finishing positions, horse names, jockeys, trainers, owners, weights, odds, and race metadata (venue, distance, prize money, ground conditions). Each race is identified by a race_id and date which can be found on the Ergebnisse (results) section of the site.

Input
ParamTypeDescription
daterequiredstringRace date in YYYYMMDD format (e.g. '20260822').
race_idrequiredstringNumeric race identifier (e.g. '1364164'). Available from race day listings on the site.
Response
{
  "type": "object",
  "fields": {
    "date": "string - race date in YYYYMMDD format",
    "venue": "string - race venue name",
    "ground": "string - ground/track condition",
    "status": "string - race status (e.g. 'Ergebnis' for completed)",
    "race_id": "string - the race identifier",
    "results": "array of race result entries with position, horse_name, horse_id, number, box, distance_beaten, prize_money, owner, trainer, jockey, weight, odds",
    "distance": "string - race distance (e.g. '1.600 m')",
    "race_name": "string - name of the race",
    "prize_money": "string - total prize money",
    "race_datetime": "string - date and time (DD.MM.YYYY, HH:MM)",
    "finishing_order": "string - order of finish by horse number"
  },
  "sample": {
    "data": {
      "date": "20260822",
      "venue": "München",
      "ground": "weich",
      "status": "Ergebnis",
      "race_id": "1364164",
      "results": [
        {
          "box": "2",
          "odds": "2,3",
          "owner": "Stall Mandarin",
          "jockey": "Eduardo Pedroza",
          "number": "4",
          "weight": "58,0 kg",
          "trainer": "Andreas Wöhler",
          "horse_id": "35673211",
          "position": "1.",
          "horse_name": "Laveran",
          "prize_money": "5.400 €",
          "distance_beaten": "leicht"
        }
      ],
      "distance": "1.600 m",
      "race_name": "MIG Fonds-Rennen",
      "prize_money": "9.000 €",
      "race_datetime": "22.08.2026, 10:50",
      "finishing_order": "4 - 9 - 3 - 7 - 8 - 1 - 5 - 2"
    },
    "status": "success"
  }
}

About the Deutscher Galopp API

Race Results

The get_race_results endpoint accepts a date (YYYYMMDD) and a numeric race_id and returns a structured result object for that race. Each entry in the results array includes position, horse_name, horse_id, jockey, trainer, owner, box, distance_beaten, and per-placement prize_money. Race-level fields cover venue, distance, ground, race_name, prize_money (total purse), and race_datetime. Race IDs and dates can be sourced from the site's race day listings.

Horse Search and Profiles

search_horses takes a query string and returns a list of matching horse profiles. The wildcard character * is supported for partial name matching — for example, 'Danon*' returns all horses whose names start with that prefix. Each matching record includes horse_id, name, parentage (sire/dam), country, year (birth year), gender, and status (active or retired). The total_count field shows how many records matched the query in total.

Performance Rankings

get_horse_rankings returns a ranked list of horses sorted by total prize money earned. The year parameter accepts values from 1979 through 2026, and results can be scoped further by region and race_type. Each ranking row includes starts, wins, placements, win_percentage, and prize_money. The default result cap is 50, configurable up to 200 via the limit parameter. The region and race_type fields in the response reflect the filter labels applied, not raw codes.

Reliability & maintenanceVerified

The Deutscher Galopp API is a managed, monitored endpoint for deutscher-galopp.de — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when deutscher-galopp.de 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 deutscher-galopp.de 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
9h ago
Latest check
3/3 endpoints 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 historical race archive indexed by venue, distance, and ground condition using get_race_results.
  • Track a trainer's win rate across seasons by aggregating trainer and position fields from multiple race results.
  • Identify horses with high win percentages in a specific year using get_horse_rankings with the year and race_type filters.
  • Look up a horse's parentage and country of origin before a race using search_horses with wildcard name matching.
  • Compare prize money earnings across years for a specific horse by combining search_horses (to get horse_id) with yearly ranking queries.
  • Populate a race card application with finishing positions, jockeys, and odds for completed German races.
  • Research breeding lineages by querying search_horses for a dam or sire name and reviewing parentage fields across results.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Deutscher Galopp offer an official developer API?+
Deutscher Galopp does not publish a documented public developer API. Their data is available through their website at deutscher-galopp.de, which this Parse API surfaces in structured form.
What does `get_race_results` return for each horse in the finishing order?+
Each entry in the results array includes the horse's finishing position, horse_name, horse_id, saddle number, box (starting stall), distance_beaten, individual prize_money, owner, trainer, and jockey. Race-level metadata — venue, ground, distance, race_name, and total prize_money — is returned alongside the results array.
How far back do the horse performance rankings go?+
The get_horse_rankings endpoint supports the year parameter from 1979 through 2026. Rankings reflect prize money earned in the selected year and can be filtered further by region and race_type. The maximum number of horses returned in one call is 200, set via the limit parameter.
Does the API cover jockey or trainer standings, not just horse rankings?+
Not currently. The get_horse_rankings endpoint covers horse-level prize money rankings only. get_race_results does include jockey and trainer per entry, so standings could be derived by aggregating across race results. You can fork this API on Parse and revise it to add a dedicated jockey or trainer rankings endpoint.
Are future race schedules or entries (pre-race data) available through this API?+
Not currently. The three endpoints cover completed race results, horse profile search, and historical prize money rankings. Pre-race entry lists, declared runners, or upcoming race schedules are not included. You can fork this API on Parse and revise it to add an endpoint for upcoming race day listings.
Page content last updated . Spec covers 3 endpoints from deutscher-galopp.de.
Related APIs in SportsSee all →
france-galop.com API
Search for detailed information about French racehorses and retrieve comprehensive results from France Galop races to track performance and racing history. Get instant access to horse profiles and race outcomes to stay updated on French horse racing events.
racing.hkjc.com API
Access comprehensive horse racing data from the Hong Kong Jockey Club. Retrieve race results, detailed horse profiles including pedigree and form records, jockey and trainer season rankings, upcoming race meeting fixtures, and horse search by name.
equibase.com API
Access comprehensive horse racing data from Equibase, including horse profiles, historical race results, track entries, post times, speed figures, and leader statistics for horses, jockeys, trainers, and owners.
bloodhorse.com API
Get comprehensive horse racing information including race results, stakes entries, horse profiles, and the latest news from BloodHorse.com. Search racing data, view detailed race information, and discover current racing leaders all in one place.
atg.se API
Access comprehensive horse racing data from ATG.se, including race calendars, detailed race information, horse profiles, starting lineups, and results. Retrieve up-to-date information on races, horses, drivers, betting pools, and outcomes.
racingpost.com API
Access comprehensive horse racing data from Racing Post, including daily racecards, meeting schedules, race results, and detailed horse profiles with form history, stats, and pedigree.
neds.com.au API
Get up-to-date horse racing information from Neds, including upcoming races, event details, and past results. View which races are next to jump and access comprehensive race data all in one place.
attheraces.com API
Access comprehensive horse racing intelligence from At The Races, including detailed racecards, draw statistics, pace analysis, and form scan data to inform your betting decisions. Get all the performance metrics and positional data you need to analyze races and horses in one place.