Discover/Varzesh3 API
live

Varzesh3 APIvarzesh3.com

Search and retrieve Persian-language sports news articles from Varzesh3.com. Get titles, descriptions, publish dates, view counts, and images via one endpoint.

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

What is the Varzesh3 API?

The Varzesh3 API gives developers access to Iran's leading sports news portal through a single search_news endpoint that returns up to 8 fields per article, including title, short description, publication date, view count, and image URL. It accepts free-text Persian queries for players, clubs, transfers, and any sports topic, and supports paginated result sets of up to 50 items per page.

This call costs1 credit / call— charged only on success
Try it
Page number for pagination (starts at 1).
Maximum number of results per page (1-50).
Search query in Persian (e.g. player name, team, topic like 'سروش رفیعی پرسپولیس').
api.parse.bot/scraper/55be15cc-9a83-438d-9a2c-7dfc0b66c62d/<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/55be15cc-9a83-438d-9a2c-7dfc0b66c62d/search_news?query=%D8%B3%D8%B1%D9%88%D8%B4+%D8%B1%D9%81%DB%8C%D8%B9%DB%8C+%D9%BE%D8%B1%D8%B3%D9%BE%D9%88%D9%84%DB%8C%D8%B3' \
  -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 varzesh3-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: Varzesh3 sports news search — bounded, re-runnable."""
from parse_apis.varzesh3_com_api import Varzesh3, InputFormatInvalid

client = Varzesh3()

# Search for news about Persepolis FC, cap total items fetched.
for article in client.articles.search(query="پرسپولیس", limit=5):
    print(article.title, "|", article.view_count)

# Drill-down: grab the first result for a player search.
hit = client.articles.search(query="سروش رفیعی").first()
if hit is not None:
    print(hit.title)
    print(hit.short_description)
    print(f"published: {hit.published_on}  comments: {hit.comment_count}")
    print(hit.link)

# Demonstrate error handling for malformed input.
try:
    client.articles.search(query="").first()
except InputFormatInvalid as e:
    print(f"Invalid input: {e.message}")

print("exercised: articles.search / InputFormatInvalid")
All endpoints · 1 totalmissing one? ·

Search for news articles on varzesh3.com by keyword query. Returns paginated results sorted by relevance. Queries should be in Persian for best results (e.g. player names, team names, transfer keywords). Each page returns up to `limit` items; use `page` to paginate through results. The `has_more` flag in the response indicates whether additional pages are available.

Input
ParamTypeDescription
pageintegerPage number for pagination (starts at 1).
limitintegerMaximum number of results per page (1-50).
queryrequiredstringSearch query in Persian (e.g. player name, team, topic like 'سروش رفیعی پرسپولیس').
Response
{
  "type": "object",
  "fields": {
    "page": "current page number",
    "items": "array of news article objects with id, title, short_description, published_on, persian_published_on, picture_url, link, view_count, comment_count",
    "limit": "results per page used",
    "has_more": "boolean indicating if more pages are available"
  },
  "sample": {
    "data": {
      "page": 1,
      "items": [
        {
          "id": 2409255,
          "link": "https://www.varzesh3.com/news/2409255/فوری-جدایی-یک-ستاره-باتجربه-پرسپولیس",
          "title": "فوری: جدایی دو ستاره پرافتخار از پرسپولیس!",
          "view_count": "90.6K",
          "picture_url": "https://news-cdn.varzesh3.com/pictures/2026/08/02/C/jr0525uf.webp",
          "published_on": "2026-08-02T13:40:51Z",
          "comment_count": "112",
          "short_description": "باشگاه پرسپولیس با انتشار دو استوری به صورت رسمی خبر از جدایی مرتضی پورعلی‌گنجی و سروش رفیعی داد.",
          "persian_published_on": "11 مرداد"
        }
      ],
      "limit": 20,
      "has_more": true
    },
    "status": "success"
  }
}

About the Varzesh3 API

What the API Returns

The search_news endpoint queries the Varzesh3 news archive and returns a paginated list of article objects. Each item in the items array includes a unique id, title, short_description, link, picture_url, view_count, and two date fields — published_on (ISO-formatted) and persian_published_on (Jalali calendar string). The has_more boolean signals whether additional pages exist beyond the current result set.

Query Language and Pagination

The query parameter accepts Persian text, which is the primary language of the source. Searching with Persian terms — player names like سروش رفیعی, club names like پرسپولیس, or topic keywords like نقل و انتقالات — produces the most relevant results. Latin-script queries may return limited or empty results. Use the page integer (starting at 1) alongside limit (1–50) to page through large result sets. The response always echoes back the page and limit values used, making it straightforward to build offset-based pagination loops.

Coverage and Freshness

Varzesh3 covers a wide range of sports topics including football (soccer), volleyball, basketball, wrestling, and international competitions. The view_count field reflects article popularity and can be used to rank or filter results client-side. Articles span a broad historical archive, not just recent news, so date-based filtering must be done by the caller using the published_on field after retrieval.

Reliability & maintenanceVerified

The Varzesh3 API is a managed, monitored endpoint for varzesh3.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when varzesh3.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 varzesh3.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
3h 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
  • Monitor transfer news for a specific Iranian football club by querying the club name in Persian
  • Build a Persian-language sports news feed aggregator sorted by view_count popularity
  • Track media coverage of a player over time using published_on and paginated search_news results
  • Power a mobile app with Jalali-calendar article dates via the persian_published_on field
  • Index Varzesh3 article thumbnails and links for a sports media dashboard using picture_url and link
  • Analyze trending sports topics in Iran by comparing view_count across different query terms
  • Archive breaking sports news by polling search_news regularly and storing new id values
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 Varzesh3 offer an official developer API?+
Varzesh3 does not publish an official public developer API or documented data access program as of this writing.
What exactly does `search_news` return for each article?+
Each item in the items array contains: id (unique article identifier), title, short_description, published_on (ISO date), persian_published_on (Jalali date string), picture_url, link (full article URL on Varzesh3), and view_count. The endpoint does not return the full article body text.
Can I retrieve full article body content through this API?+
Not currently. The API returns short_description, title, metadata, and the article link, but not the complete article text. You can fork this API on Parse and revise it to add an article-detail endpoint that fetches full body content.
Can I filter results by sport type, date range, or category?+
Not directly. The only filter is the query string. Date and category filtering must be applied client-side using the published_on field returned in each item. You can fork this API on Parse and revise it to add dedicated date-range or category parameters.
How does pagination work and how do I know when results are exhausted?+
Each response includes a has_more boolean. When has_more is false, no additional pages exist for that query. Increment the page parameter (starting at 1) and keep limit consistent across requests to reliably page through the full result set.
Page content last updated . Spec covers 1 endpoint from varzesh3.com.
Related APIs in SportsSee all →
canaldosurf.com API
canaldosurf.com API
vg.no API
Access VG.no's latest news, articles, sports scores, and TV guides through a single interface where you can browse the front page, search articles by topic, view category-specific content, and find related stories. Get real-time sports scores and television schedules alongside comprehensive news coverage from Norway's leading news outlet.
apnews.com API
Search for news articles from Associated Press on any topic and retrieve complete article details including headlines, summaries, and content with easy pagination. Stay informed with current news stories by finding and reading articles on subjects that matter to you.
hsprepsports.com API
Access high school sports news, rankings, recruiting updates, and player spotlights from HS PrepSports by searching articles, browsing collections, or reading individual pieces. Stay informed on the latest high school athletic developments with curated content all in one place.
bleacherreport.com API
Access sports news articles, live scores, and detailed game statistics from Bleacher Report across all major leagues including the NBA, NFL, MLB, and NHL. Retrieve full article content, expert analysis, and box-score data for any supported sport and date.
kooora.com API
Get live football scores, match details, team standings, and player statistics in real-time. Stay updated with the latest football news and competition rankings all in one place.
tv2.no API
Access the latest news, sports updates, and TV schedules from tv2.no, including live match information, articles by category, and video content. Browse frontpage articles, track live sports matches with detailed stats, check the TV guide, and follow topic-specific news feeds all in one place.
whoscored.com API
Search for players and teams, then dive deep into their performance metrics, match statistics, and detailed passing data to analyze football games and player abilities. Get comprehensive insights on team performance, individual player stats, and play-by-play event information to power your football analysis and decision-making.