# Varzesh3 — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Varzesh3 provides 1 callable API endpoint through the Parse marketplace.

**Category:** Sports | **Website:** [www.varzesh3.com/](https://www.varzesh3.com/) | **Docs:** [parse.bot/marketplace/af46c5f7-cea0-4af6-b2fe-6cab49ed6ff7/varzesh3-com-api](https://parse.bot/marketplace/af46c5f7-cea0-4af6-b2fe-6cab49ed6ff7/varzesh3-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-varzesh3-com-api-af46c5f7/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_news

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.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of results per page (1-50). |
| `page` | integer | No | Page number for pagination (starts at 1). |
| `query` | string | Yes | Search query in Persian (e.g. player name, team, topic like 'سروش رفیعی پرسپولیس'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-varzesh3-com-api-af46c5f7/search_news \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","page":"<integer>","query":"<string>"}'
```
