Discover/centrumsleja API
live

centrumsleja APIcentrumsleja.pl

Query the SlayBet global leaderboard via the centrumsleja.pl API. Retrieve player rankings, balances, earned ranks, and season badges with optional username filtering.

This API takes change requests — .
Endpoint health
verified 5d ago
search_ranks
1/1 passing latest checkself-healing
Endpoints
1
Updated
20d ago

What is the centrumsleja API?

The centrumsleja.pl API exposes 1 endpoint — search_ranks — that returns the SlayBet global leaderboard ranked by player balance. Each result includes up to 7 fields per entry: position, username, balance, earned ranks, and season badge. You can retrieve the full leaderboard or narrow results to specific players using a case-insensitive username substring filter.

This call costs1 credit / call— charged only on success
Try it
Username substring filter (case-insensitive). Omitting returns the full leaderboard.
api.parse.bot/scraper/63539564-5c66-4307-ac3d-441a6b09105c/<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/63539564-5c66-4307-ac3d-441a6b09105c/search_ranks?query=garmor' \
  -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 centrumsleja-pl-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: SlayBet SDK — bounded, re-runnable; every call capped."""
from parse_apis.centrumsleja_pl_api import SlayBet, ParseError

client = SlayBet()

# Search for a specific user in the global leaderboard
for player in client.ranked_players.search(query="garmor", limit=3):
    print(player.username, player.position, player.balance)

# Get full leaderboard, capped
try:
    for player in client.ranked_players.search(limit=3):
        print(player.username, player.position, player.balance, player.rank)
except ParseError as e:
    print(f"error: {e.code}")

print("exercised: ranked_players.search")
All endpoints · 1 totalmissing one? ·

Retrieve the SlayBet global leaderboard ranked by balance. Results include each player's position, balance, earned ranks, and season badge. When a query is provided, results are filtered to usernames containing the query (case-insensitive substring match). Without a query, the full leaderboard is returned.

Input
ParamTypeDescription
querystringUsername substring filter (case-insensitive). Omitting returns the full leaderboard.
Response
{
  "type": "object",
  "fields": {
    "total": "integer count of results returned",
    "results": "array of ranked player entries"
  },
  "sample": {
    "data": {
      "total": 1,
      "results": [
        {
          "rank": null,
          "ranks": [],
          "balance": "27138607415",
          "position": 2,
          "username": "garmor_",
          "season_badge": null
        }
      ]
    },
    "status": "success"
  }
}

About the centrumsleja API

What the API Returns

The search_ranks endpoint returns the SlayBet global leaderboard sorted by balance. The response contains a total integer indicating how many entries matched, and a results array where each element represents one ranked player. Player entries include their leaderboard position, current balance, earned ranks, and season badge — giving a snapshot of both current standing and historical achievement.

Filtering by Username

The optional query parameter accepts any string and performs a case-insensitive substring match against player usernames. Passing query=alex will return every player whose username contains "alex" regardless of capitalization. Omitting query entirely returns the full global leaderboard with no filtering applied.

Data Coverage and Freshness

The leaderboard reflects competitive standings across the SlayBet player base on centrumsleja.pl. The results array includes both rank position (useful for tracking movement) and season badge (useful for understanding a player's competitive history across seasons). There is no pagination parameter exposed; the endpoint returns all matching entries in a single response.

Reliability & maintenanceVerified

The centrumsleja API is a managed, monitored endpoint for centrumsleja.pl — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when centrumsleja.pl 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 centrumsleja.pl 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
5d 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
  • Track a specific player's leaderboard position and balance over time using the query filter on their username.
  • Build a live leaderboard display showing top SlayBet players ranked by balance.
  • Monitor season badge distribution across the top-ranked players to analyze competitive tier spread.
  • Alert users when a queried username enters or exits a target rank range.
  • Aggregate earned rank counts across the full leaderboard to identify rank milestones.
  • Compare multiple player balances by issuing filtered search_ranks calls for each username.
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 centrumsleja.pl offer an official developer API?+
centrumsleja.pl does not publish an official public developer API or API documentation for the SlayBet leaderboard data.
What does each entry in the `results` array include?+
Each entry in the results array includes the player's leaderboard position, username, current balance, earned ranks, and season badge. The total field at the top level tells you how many entries were returned for your query.
Does the API expose individual match history or game-level statistics?+
Not currently. The API covers leaderboard-level data: player position, balance, earned ranks, and season badge. It does not expose per-match results, game logs, or win/loss records. You can fork this API on Parse and revise it to add an endpoint targeting individual player game history if that data becomes accessible.
Can I page through leaderboard results or set a result limit?+
The search_ranks endpoint does not expose pagination or limit parameters. It returns all matching entries in a single response. If you need to segment results, you can fork this API on Parse and revise the endpoint to add offset and limit controls.
How precise is the username filter — does it support exact match or wildcards?+
The query parameter performs a case-insensitive substring match. It will return any username that contains the query string anywhere within it. Exact-match or regex-style filtering is not currently supported; the API covers substring matching only.
Page content last updated . Spec covers 1 endpoint from centrumsleja.pl.
Related APIs in SportsSee all →
api.chess.com API
Rank the world's best chess players by retrieving top-ranked competitors from Chess.com's public leaderboards across different game categories like blitz, rapid, and classical. Track player performance and standings to see how the competitive chess landscape evolves across various time controls.
hllrecords.com API
Search and retrieve detailed combat statistics and player profiles from Hell Let Loose matches through HLLRecords.com. Track player performance metrics, find specific players, and access comprehensive battle records to analyze gameplay data and competitive standings.
csstats.gg API
Access Counter-Strike 2 player statistics, match history, and leaderboard rankings from csstats.gg. Search players by Steam ID or name, retrieve detailed performance metrics and recent match results, explore scoreboard data, view played-with history, and check global ban statistics.
rocketleague.tracker.network API
Retrieve Rocket League player profiles, historical season statistics, playlist rankings, and recent match session data from Tracker Network. Search for players across platforms and compare performance metrics, rank ratings, and progression across seasons.
lolpros.gg API
Search and discover professional League of Legends players while exploring detailed profiles, ladder rankings, and competitive statistics from the pro scene. Track player performance metrics, find competitors by name, and monitor where top players stand in the rankings.
seramate.com API
Track World of Warcraft PvP performance with access to leaderboards, character profiles, seasonal statistics, and gladiator rankings across different competitive seasons. Search and monitor player ratings, activity history, and cutoff thresholds to stay updated on the competitive PvP landscape.
tracker.network API
Track your Rocket League competitive ranking across all playlists and platforms by searching for any player, getting instant access to their current MMR ratings. Monitor your own progression or compare skill levels with friends using real-time data from Tracker Network.
betao.bet.br API
Track live casino game performance and multiplier wins from Betão's Brazilian platform to analyze top payouts and identify the biggest winning moments. Monitor real-time betting data to stay informed on the latest game results and multiplier records.