Discover/1wyvev API
live

1wyvev API1wyvev.life

Access 1win casino game data via 4 endpoints: list categories, providers, and games, or fetch metadata for a specific game by ID.

This API takes change requests — .
Endpoint health
verified 2h ago
list_categories
list_providers
list_games
get_game_info
4/4 passing latest checkself-healing
Endpoints
4
Updated
2h ago

What is the 1wyvev API?

The 1wyvev.life API exposes public casino catalog data from the 1win platform across 4 endpoints, covering game categories, providers, and individual game metadata. Using list_games, you can retrieve games filtered by category slug and preset section. The get_game_info endpoint returns per-game details including provider name, demo availability, and whether the game supports bonus balance wagering.

Try it
Casino section preset to filter categories.
api.parse.bot/scraper/f8fcc6bf-49bd-4694-bf4b-3d00281ed3ea/<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/f8fcc6bf-49bd-4694-bf4b-3d00281ed3ea/list_categories?preset=casino' \
  -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 1wyvev-life-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: 1win Casino Stats SDK — bounded, re-runnable; every call capped."""
from parse_apis.api_1wyvev_life_api import OneWinCasino, Preset, GameNotFound

client = OneWinCasino()

# List casino categories with game counts
for category in client.categories.list(preset=Preset.CASINO, limit=3):
    print(category.name, category.game_count)

# List providers
for provider in client.providers.list(limit=3):
    print(provider.name, provider.game_count)

# List games in a category, then drill into details
game = client.game_summaries.list(category_slug="1win-games", limit=1).first()
try:
    full = game.details()
    print(full.name, full.provider, full.has_demo, full.provider_details.games_count)
except GameNotFound as e:
    print("not found:", e.game_id)

print("exercised: categories.list, providers.list, game_summaries.list, GameSummary.details")
All endpoints · 4 totalmissing one? ·

Retrieve all casino game categories with their game counts. Categories are grouped by preset (casino, live-games, quick-games). Results are auto-iterated as a single page.

Input
ParamTypeDescription
presetstringCasino section preset to filter categories.
Response
{
  "type": "object",
  "fields": {
    "total": "integer",
    "categories": "array of category objects with id, name, slug, and game_count"
  },
  "sample": {
    "data": {
      "total": 10,
      "categories": [
        {
          "id": 64,
          "name": "1win games",
          "slug": "1win-games",
          "game_count": 16
        },
        {
          "id": 14,
          "name": "Quick games",
          "slug": "quick-games",
          "game_count": 230
        }
      ]
    },
    "status": "success"
  }
}

About the 1wyvev API

Game Categories and Providers

list_categories returns all casino game categories available on the platform, each with an id, name, slug, and game_count. You can filter by the optional preset parameter to narrow results to a specific casino section such as casino, live-games, or quick-games. list_providers requires no inputs and returns the full provider catalog: an array of objects each containing a provider name and their associated game_count.

Browsing Games by Category

list_games accepts an optional preset and an optional category_slug (for example popular, slots, or 1win-games). When category_slug is provided, the response includes games for that category only — each game object carries an id in provider:slug format, a name, provider string, and has_demo boolean. When no slug is supplied, the response returns all categories with their associated games. The total and category_slug fields let you confirm scope at a glance.

Per-Game Detail

get_game_info accepts a game_id string in provider:slug format, which you obtain from list_games results. The response includes id, name, tags, has_demo, provider, a nested provider_details object with the provider's name and total games_count, and a can_use_bonus_balance flag indicating whether the game is eligible for bonus-balance wagering.

Reliability & maintenanceVerified

The 1wyvev API is a managed, monitored endpoint for 1wyvev.life — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when 1wyvev.life 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 1wyvev.life 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
2h ago
Latest check
4/4 endpoints 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
  • Build a game directory filtered by category slug to surface 1win slots, live games, or quick games by section.
  • Track provider catalog size over time using the game_count field from list_providers.
  • Filter games that support demo play by reading the has_demo field from list_games results.
  • Identify which games accept bonus balance wagering using the can_use_bonus_balance flag from get_game_info.
  • Cross-reference provider metadata — name and total game count — against a specific game using provider_details in the game info response.
  • Populate a category navigation menu using slugs and game counts from list_categories grouped by preset.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does 1win have an official public developer API?+
1win does not publish an official public developer API for its casino catalog data.
How do I get the game ID needed for get_game_info?+
Call list_games first. Each game object in the response includes an id field in provider:slug format (e.g. v_1wingames:luckyjet). Pass that string directly as the game_id parameter to get_game_info.
Does the API return player activity data such as recent bets, win histories, or jackpot amounts?+
No. The API covers static catalog data: category listings, provider counts, and per-game metadata including demo availability and bonus eligibility. Live game statistics and betting history are not exposed. You can fork this API on Parse and revise it to add an endpoint targeting that data if it becomes publicly accessible.
Can I retrieve games across multiple category slugs in a single call?+
list_games accepts one category_slug per call. To aggregate games across multiple categories, you would make one call per slug. The API covers each category individually; multi-slug batch filtering in a single request is not currently supported. You can fork this API on Parse and revise it to add a batch endpoint.
Are tags returned for every game, or only some?+
The tags field is returned by get_game_info for every game, but its contents depend on how 1win classifies that title. Some games may have an empty tags array if the platform assigns no tags to them.
Page content last updated . Spec covers 4 endpoints from 1wyvev.life.
Related APIs in EntertainmentSee all →
poki.com API
Discover and browse thousands of free online games with detailed information about genres, popularity, and platform compatibility. Find new games by exploring categories or searching through Poki's complete game catalog to access metadata and recommendations.
caesars.com API
Browse Caesars Entertainment properties and online casino offerings to discover destinations, view property details, check available games, track live jackpots, and explore current promotions. Access comprehensive information across multiple regions to plan your casino visit or explore gaming options.
funpay.com API
Browse and monitor gaming marketplace listings and prices on FunPay.com. Search for games and categories, view current listings and pricing, explore the full game directory alphabetically, and look up seller profiles to research reputation and active offers.
playerok.com API
Search and browse in-game items, accounts, and gaming services on Playerok's gaming marketplace. Access detailed product listings, game categories, and featured items. Filter by game or category to retrieve available offerings.
g2a.com API
Search for game keys and get real-time pricing, seller ratings, and detailed product information from G2A's marketplace. Browse available categories and find the best deals on digital game licenses from verified sellers.
aviatorai.shop API
Retrieve historical round data and game information from crash-style multiplier games like Aviator and Chicken Road to analyze prediction patterns and platform updates. Monitor game performance metrics and stay informed about the latest platform changes across supported titles.
betfred.com API
Access real-time casino games, trending favorites, and upcoming sports matches from Betfred all in one place. Browse comprehensive sports configurations and discover which games are currently popular.
cdkeys.com API
Search and browse digital game keys across thousands of titles, view product details, pricing, and discover best sellers and latest releases from CDKeys. Filter games by category, compare options, and stay updated on the newest game key listings available.