Soccer Api APIsoccer-api.com ↗
Access soccer-related tutorials, documentation, and feature guides published on the Soccer API website through dedicated endpoints for blog posts, feature pages, and topic tags. Use this to discover development resources, product information, and tagged content organized across the Soccer API platform.
curl -X GET 'https://api.parse.bot/scraper/bf4cd794-a95b-41ea-b154-93e331daa23b/list_posts?search=soccer' \ -H 'X-API-Key: $PARSE_API_KEY'
List blog posts from the Soccer API website, optionally filtered by search query or tag ID. Returns paginated summaries sorted by date descending. Each post includes tag and category IDs that can be resolved via list_tags.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number for pagination. |
| search | string | Free-text search query to filter posts by title and content. |
| tag_id | string | Numeric tag ID to filter posts. Obtain tag IDs from the list_tags endpoint. |
| per_page | integer | Number of posts per page (1–100). |
{
"type": "object",
"fields": {
"page": "current page number",
"count": "number of posts returned on this page",
"posts": "array of post summary objects with id, title, slug, date, modified, link, excerpt, author_id, featured_media_id, categories, and tags",
"per_page": "items per page"
},
"sample": {
"data": {
"page": 1,
"count": 6,
"posts": [
{
"id": 1462,
"date": "2026-08-06T08:53:06",
"link": "https://soccer-api.com/soccer-api-tutorials/how-to-choose-right-soccer-api-for-your-project/",
"slug": "how-to-choose-right-soccer-api-for-your-project",
"tags": [
194,
195,
229,
227,
221,
228,
193,
230
],
"title": "How to Choose the Right Soccer API for Your Project",
"excerpt": "Soccer API, Soccer Data Provider, Soccer API Provider, Football API, Live Soccer API, Soccer WebSocket API, Soccer Data API, Sports API Comparison, Soccer API Pricing",
"modified": "2026-08-06T08:53:08",
"author_id": 1,
"categories": [
1
],
"featured_media_id": 1463
}
],
"per_page": 10
},
"status": "success"
}
}About the Soccer Api API
The Soccer Api API on Parse exposes 5 endpoints for the publicly available data on soccer-api.com. Calls return JSON over HTTPS and are billed per successful response.
Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.