Titan007 APIzq.titan007.com ↗
Access live football scores, match stats, head-to-head history, and 1x2/Asian handicap/over-under odds from multiple bookmakers via the Titan007 API.
What is the Titan007 API?
This API exposes 8 endpoints covering live and historical football data from zq.titan007.com, including real-time match scores, detailed match statistics, and odds from multiple bookmakers across three markets. The get_live_scores endpoint returns all matches scheduled or in progress for the current day worldwide, while dedicated odds endpoints cover European 1x2, Asian handicap, and over/under lines with both opening and current values per bookmaker.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/69a47c61-f9da-4d24-b9d0-d490df5a89c1/get_live_scores' \ -H 'X-API-Key: $PARSE_API_KEY'
Fetch all current live and today's match scores. Returns all matches scheduled or in progress for the current day, including scores and match status. Matches include both major and minor leagues worldwide. Status field indicates match state (0=not started, 1=first half, 2=half time, 3=second half, -1=finished).
No input parameters required.
{
"type": "object",
"fields": {
"matches": "array of match objects with match_id, league, home_team, away_team, match_time, status, home_score, away_score, home_half_score, away_half_score"
},
"sample": {
"data": {
"matches": [
{
"league": "新西北联",
"status": "0",
"match_id": "2974271",
"away_team": "奥林匹克湾",
"home_team": "奥克兰FC后备队",
"away_score": "0",
"home_score": "0",
"match_time": "15:00",
"away_half_score": "",
"home_half_score": ""
}
]
},
"status": "success"
}
}About the Titan007 API
Live Scores and Match Coverage
get_live_scores returns all today's matches globally — major and minor leagues — with fields including match_id, league, home_team, away_team, match_time, status, home_score, away_score, and half-time scores. The status field uses numeric codes: 0 for not started, 1 for first half, 2 for half time, with additional values for second half, extra time, and finished states. These match_id values are the key input for all other endpoints.
League and Season Data
get_competitions_list returns every available competition with its numeric id and Chinese-language name. Pass that league_id into get_league_matches along with an optional season parameter in YYYY-YYYY format to retrieve the full schedule, results, and team roster for that season. Team objects include names in Simplified Chinese, Traditional Chinese, and English, plus a logo path. Match records include round, match_time, home_score, away_score, and half-time scores.
Match Detail and Head-to-Head
get_match_detail returns per-match statistics (corner kicks, fouls, shots, shots on target, passes, attacks, dangerous attacks, possession) as home/away pairs, a timeline of match events with half, team_id, type, and minute fields, and basic info including weather and temperature. Stats may be absent for unplayed matches or minor leagues without tracking data. get_head_to_head returns all historical encounters between a match's two teams, including date, league, scores, half-time scores, and corner kicks where available.
Odds Data
Three dedicated endpoints cover bookmaker odds for a given match_id. get_1x2_odds returns opening and current home/draw/away values per bookmaker. get_asian_handicap_odds returns opening and current lines with both text and numeric handicap values. get_over_under_odds returns opening and current totals with text and numeric total values alongside over/under odds. All three note that coverage may be absent for minor league matches without bookmaker listings.
The Titan007 API is a managed, monitored endpoint for zq.titan007.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when zq.titan007.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 zq.titan007.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.
Will this API break when the source site changes?+
Is this an official API from the source site?+
Can I fix or extend this API myself if I need a new endpoint or field?+
What happens if I call an endpoint that has an issue?+
- Build a live football dashboard displaying real-time scores and match status across worldwide leagues using
get_live_scores. - Compare opening vs. current 1x2 odds movement across bookmakers for a specific match to identify line shifts.
- Aggregate Asian handicap lines from multiple bookmakers to find odds discrepancies for a given fixture.
- Populate a season results table for a chosen league by combining
get_competitions_listandget_league_matches. - Enrich match preview pages with head-to-head records, half-time scores, and corner kick history via
get_head_to_head. - Display in-match statistics like possession, shots on target, and dangerous attacks from
get_match_detailfor live commentary tools. - Track over/under line movement by comparing opening and current totals from
get_over_under_oddsacross bookmakers.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 200 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 100 req/min |
| Team | $300/mo | 20,000 | 300 req/min |
| Company | $1,000/mo | 100,000 | 500 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.
Does zq.titan007.com have an official developer API?+
What does `get_match_detail` return for a match that hasn't been played yet?+
stats object and events array may be empty for unplayed matches. The match_info object — which includes match_id, weather, temperature, home_team_id, away_team_id, and scores — is returned regardless. Stats are also absent for minor leagues that don't have tracking enabled.Does the API return odds for all matches, including minor leagues?+
Are player-level statistics or lineups available through this API?+
How are team and competition names localized across endpoints?+
get_league_matches are provided as three separate fields: Simplified Chinese, Traditional Chinese, and English. Competition names returned by get_competitions_list are in Chinese only. The league field in get_live_scores is also Chinese-language. Plan for multi-language handling or mapping to external IDs if your application requires consistent English names.