# Padel Live Api (`apiguruu/padel-live-api`) Actor

An Apify Actor that scrapes padel data from PadelFIP.com, including world rankings, player profiles, tournament information, live scores, news articles, and circuit statistics.   for api visit here https://rapidapi.com/matepapava123/api/padel-live-api

- **URL**: https://apify.com/apiguruu/padel-live-api.md
- **Developed by:** [apiguru](https://apify.com/apiguruu) (community)
- **Categories:** AI, News, Developer tools
- **Stats:** 14 total users, 2 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $6.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

An Actor is a serverless cloud program that runs on the Apify platform. It has two run modes.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.

Apify vocabulary and the platform model are defined once, in the agent quickstart at https://apify.com/agents.md.

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For examples already wired to this Actor's own input schema, see the [API](#api) section below.

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).

# README

## PadelFIP Scraper

An Apify Actor that scrapes padel data from PadelFIP.com, including world rankings, player profiles, tournament information, live scores, news articles, and circuit statistics.

### Features

- Get world rankings with gender, category, year, and country filters
- Search players by name
- Get detailed player profiles with stats, bio, partner, titles
- Get circuit performance statistics
- Get titles and finals leaderboard
- Get CUPRA FIP Tour statistics
- Get all currently live tournament scores
- Get live scores for a specific tournament
- Browse news articles with category filter
- Get full news article content
- List tournaments with circuit and year filters
- Get tournament details
- Get country/federation reference data

### Actions

#### 1. `get_rankings`

Get paginated world rankings.

**Parameters:**

- `gender` (optional): "male" or "female" (default: "male")
- `category` (optional): "master" or "junior" (default: "master")
- `year` (optional): Ranking year (defaults to current)
- `week` (optional): Ranking week number (defaults to current)
- `country` (optional): 3-letter country code (e.g., "ESP", "ARG")
- `page` (optional): Page number (default: 1)
- `limit` (optional): Items per page (default: 20)
- `language` (optional): "en" or "es" (default: "en")

**Example Input:**

```json
{
    "action": "get_rankings",
    "gender": "male",
    "category": "master",
    "country": "ARG",
    "page": 1
}
```

#### 2. `search_players`

Search players by name.

**Parameters:**

- `query` (required): Player name to search
- `page` (optional): Page number (default: 1)
- `limit` (optional): Items per page (default: 20)
- `language` (optional): "en" or "es" (default: "en")

**Example Input:**

```json
{
    "action": "search_players",
    "query": "tapia"
}
```

#### 3. `get_player_profile`

Get full player profile by slug.

**Parameters:**

- `slug` (required): Player slug (e.g., "agustin-tapia")

**Example Input:**

```json
{
    "action": "get_player_profile",
    "slug": "agustin-tapia"
}
```

#### 4. `get_circuit_stats`

Get circuit performance statistics.

**Parameters:**

- `player_id` (optional): Player ID (e.g., "P000285")
- `gender` (optional): "male" or "female"
- `circuit` (optional): Circuit slug filter
- `year` (optional): Year filter
- `page` (optional): Page number (default: 1)
- `limit` (optional): Items per page (default: 20)
- `exclude` (optional): Exclude filter
- `language` (optional): "en" or "es" (default: "en")

**Example Input:**

```json
{
    "action": "get_circuit_stats",
    "player_id": "P000285",
    "year": 2026
}
```

#### 5. `get_titles_stats`

Get titles and finals leaderboard.

**Parameters:**

- `gender` (optional): "male" or "female" (default: "male")
- `page` (optional): Page number (default: 1)
- `limit` (optional): Items per page (default: 20)
- `language` (optional): "en" or "es" (default: "en")

**Example Input:**

```json
{
    "action": "get_titles_stats",
    "gender": "male"
}
```

#### 6. `get_cupra_stats`

Get CUPRA FIP Tour statistics.

**Parameters:**

- `gender` (optional): "male" or "female" (default: "male")
- `page` (optional): Page number (default: 1)
- `limit` (optional): Items per page (default: 20)
- `language` (optional): "en" or "es" (default: "en")

**Example Input:**

```json
{
    "action": "get_cupra_stats",
    "gender": "female"
}
```

#### 7. `get_live_scores`

Get all currently live tournaments with scores.

**Parameters:** None

**Example Input:**

```json
{
    "action": "get_live_scores"
}
```

#### 8. `get_live_tournament`

Get live scores for a specific tournament.

**Parameters:**

- `tournament_id` (required): Tournament widget ID (e.g., "FIP-2026-1204")

**Example Input:**

```json
{
    "action": "get_live_tournament",
    "tournament_id": "FIP-2026-1204"
}
```

#### 9. `get_news`

Get paginated news article list.

**Parameters:**

- `page` (optional): Page number (default: 1)
- `limit` (optional): Items per page (default: 20)
- `news_category` (optional): News category slug

**Example Input:**

```json
{
    "action": "get_news",
    "page": 1
}
```

#### 10. `get_news_article`

Get a single news article by slug.

**Parameters:**

- `slug` (required): Article slug

**Example Input:**

```json
{
    "action": "get_news_article",
    "slug": "fip-tour-2026-season-preview"
}
```

#### 11. `get_tournaments`

List tournaments with filters.

**Parameters:**

- `circuit` (optional): Event category slug (e.g., "cupra-fip-tour", "fip-beyond")
- `year` (optional): Year filter (2021-2026)
- `page` (optional): Page number (default: 1)
- `limit` (optional): Items per page (default: 20)

**Example Input:**

```json
{
    "action": "get_tournaments",
    "year": 2026,
    "circuit": "cupra-fip-tour"
}
```

#### 12. `get_tournament_detail`

Get tournament details by slug.

**Parameters:**

- `slug` (required): Tournament/event slug

**Example Input:**

```json
{
    "action": "get_tournament_detail",
    "slug": "fip-beyond-b3-grosseto"
}
```

#### 13. `get_countries`

Get list of countries/federations.

**Parameters:**

- `language` (optional): "en" or "es" (default: "en")

**Example Input:**

```json
{
    "action": "get_countries",
    "language": "en"
}
```

### Output Format

All actions return data in a consistent format:

```json
{
    "action": "action_name",
    "success": true,
    "data": { ... },
    "error": null,
    "timestamp": "2026-01-01T00:00:00.000Z"
}
```

On error:

```json
{
    "action": "action_name",
    "success": false,
    "data": null,
    "error": "Error message",
    "timestamp": "2026-01-01T00:00:00.000Z"
}
```

### Typical Workflows

#### Player Research

1. `search_players` with a name query
2. `get_player_profile` with the player's slug
3. `get_circuit_stats` with the player's ID

#### Tournament Tracking

1. `get_tournaments` to browse upcoming/past events
2. `get_tournament_detail` for specific event info
3. `get_live_scores` during live events

#### Rankings Analysis

1. `get_rankings` with gender/category filters
2. Filter by country to see national rankings
3. `get_titles_stats` for historical title data

### Notes

- Uses `curl_cffi` with Chrome TLS fingerprint impersonation (required to bypass CDN bot protection)
- Rankings for positions 1-40 are scraped from HTML; deeper pages use the REST API
- Player profiles combine WP REST API data with HTML scraping for complete information
- Live scores are scraped from the Crionet widget embedded on PadelFIP
- Some data supports English and Spanish via the `language` parameter

# Actor input Schema

## `action` (type: `string`):

Select the scraping action to perform

## `gender` (type: `string`):

OPTIONAL. Player gender filter (default: male).

## `category` (type: `string`):

OPTIONAL for get\_rankings. Ranking category (default: master).

## `year` (type: `integer`):

OPTIONAL. Year filter (defaults to current year). Used by get\_rankings, get\_circuit\_stats, get\_tournaments.

## `week` (type: `integer`):

OPTIONAL for get\_rankings. Ranking week number (defaults to current week).

## `country` (type: `string`):

OPTIONAL for get\_rankings. 3-letter country code filter (e.g., ESP, ARG, BRA).

## `query` (type: `string`):

REQUIRED for search\_players. Player name to search (e.g., 'tapia', 'galan').

## `slug` (type: `string`):

REQUIRED for get\_player\_profile, get\_news\_article, get\_tournament\_detail. URL slug identifier (e.g., 'agustin-tapia' for player, 'fip-beyond-b3-grosseto' for tournament).

## `player_id` (type: `string`):

OPTIONAL for get\_circuit\_stats. Player ID (e.g., 'P000285').

## `circuit` (type: `string`):

OPTIONAL. Circuit slug filter (e.g., 'cupra-fip-tour', 'fip-beyond', 'premier-padel'). Used by get\_circuit\_stats and get\_tournaments.

## `exclude` (type: `string`):

OPTIONAL for get\_circuit\_stats. Exclude certain data from results.

## `tournament_id` (type: `string`):

REQUIRED for get\_live\_tournament. Tournament widget ID (e.g., 'FIP-2026-1204'). Get this from get\_live\_scores results.

## `news_category` (type: `string`):

OPTIONAL for get\_news. News category slug to filter articles.

## `language` (type: `string`):

OPTIONAL. Language for results (default: en). Used by get\_rankings, search\_players, get\_circuit\_stats, get\_titles\_stats, get\_cupra\_stats, get\_countries.

## `page` (type: `integer`):

OPTIONAL. Page number for paginated results (default: 1).

## `limit` (type: `integer`):

OPTIONAL. Number of items per page (default: 20, max: 100).

## Actor input object example

```json
{
  "action": "get_rankings",
  "gender": "male",
  "category": "master",
  "language": "en",
  "page": 1,
  "limit": 20
}
```

# Actor output Schema

## `results` (type: `string`):

Scraped padel data from PadelFIP.com stored in the default dataset

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "action": "get_rankings"
};

// Run the Actor and wait for it to finish
const run = await client.actor("apiguruu/padel-live-api").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "action": "get_rankings" }

# Run the Actor and wait for it to finish
run = client.actor("apiguruu/padel-live-api").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "action": "get_rankings"
}' |
apify call apiguruu/padel-live-api --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,apiguruu/padel-live-api"
        }
    }
}
```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/RAXPHqHGUkHDYHpeu/builds/hb9MQTyh22aHTCogf/openapi.json
