Discover/playerok.com API
live

playerok.com APIplayerok.com

Access Playerok game marketplace data: in-game items, accounts, donations, and services. Filter by game, category, sort, and paginate with 5 endpoints.

Endpoints
5
Updated
3mo ago
Try it
Number of items per page (max 50)
Pagination cursor from page_info.end_cursor of previous response
Game UUID to filter by (e.g., '1ecc48ce-4f17-6e23-6b8a-fa42990d44fb' for Genshin Impact).
Game slug to filter by (e.g., 'genshin-impact'). Will be auto-resolved to game_id. Prefer
Sort field (e.g., 'price', 'createdAt')
Category slug to filter by (e.g., 'coins'). Used with game_slug for auto-resolution.
Sort direction: ASC or DESC
Game category UUID to filter by (e.g., '1ecc48ce-52cb-6260-00d0-cfdb37fa1032' for Crystals
api.parse.bot/scraper/4688010c-bf13-44a2-bef6-4db5e643b286/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/4688010c-bf13-44a2-bef6-4db5e643b286/list_items' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 5 totalclick to expand

List products/items with filtering by game, category, sorting, and cursor-based pagination. Supports filtering by game_id/game_category_id directly, or by game_slug/category_slug (auto-resolved).

Input
ParamTypeDescription
limitintegerNumber of items per page (max 50)
cursorstringPagination cursor from page_info.end_cursor of previous response
game_idstringGame UUID to filter by (e.g., '1ecc48ce-4f17-6e23-6b8a-fa42990d44fb' for Genshin Impact). Use search_games to find IDs.
game_slugstringGame slug to filter by (e.g., 'genshin-impact'). Will be auto-resolved to game_id. Prefer game_id for efficiency.
sort_fieldstringSort field (e.g., 'price', 'createdAt')
category_slugstringCategory slug to filter by (e.g., 'coins'). Used with game_slug for auto-resolution.
sort_directionstringSort direction: ASC or DESC
game_category_idstringGame category UUID to filter by (e.g., '1ecc48ce-52cb-6260-00d0-cfdb37fa1032' for Crystals). Use search_games to find category IDs.
Response
{
  "type": "object",
  "fields": {
    "products": "array of product objects",
    "page_info": "object with has_next_page, end_cursor, has_previous_page, start_cursor",
    "total_count": "integer - total matching items"
  },
  "sample": {
    "products": [
      {
        "id": "1f112eb6-9925-6bd0-1bc2-4a33df1ce682",
        "game": {
          "name": "Genshin Impact"
        },
        "name": "💎 ЗА ПЕРВОЕ ПОПОЛНЕНИЕ x2 🔥 980+980 Кристаллов по UID",
        "slug": "4a33df1ce682-za-pervoe-popolnenie-x2-980-980-kristallov-po-uid",
        "price": 1149,
        "seller": {
          "id": "...",
          "rating": 4.9,
          "username": "RobloxAccMarket",
          "is_online": false,
          "testimonial_count": 735
        },
        "status": "APPROVED",
        "category": {
          "name": "Кристаллы",
          "slug": null
        },
        "priority": "PREMIUM",
        "image_url": "https://i.playerok.com/...",
        "raw_price": 2499,
        "created_at": "2026-02-26T08:17:05.000Z",
        "deals_count": null,
        "seller_type": "USER",
        "views_count": null,
        "approval_date": "2026-02-26T08:18:02.658Z",
        "fee_multiplier": 0.1
      }
    ],
    "page_info": {
      "end_cursor": "YXJyYXljb25uZWN0aW9uOjI=",
      "start_cursor": "YXJyYXljb25uZWN0aW9uOjA=",
      "has_next_page": true,
      "has_previous_page": false
    },
    "total_count": 551
  }
}

About the playerok.com API

The Playerok API provides structured access to the playerok.com gaming marketplace through 5 endpoints covering product listings, game search, category browsing, and featured items. The list_items endpoint lets you filter the marketplace by game or category, returning price, seller rating, and pagination cursors. You can also fetch detailed product data via get_item, discover games with search_games, and surface promoted listings using get_top_items.

Browsing and Filtering Marketplace Listings

The list_items endpoint returns a paginated array of products alongside a page_info object containing has_next_page, end_cursor, has_previous_page, and start_cursor. Pass a game_id (UUID) or game_slug (e.g., genshin-impact) to scope results to a specific title. You can further narrow by game_category_id or category_slug (e.g., coins), and control order with sort_field (e.g., price, createdAt) and sort_direction (ASC or DESC). The endpoint accepts up to 50 results per page via the limit parameter. Passing a game_slug or category_slug instead of their UUID equivalents incurs an auto-resolution step; use the UUID forms when you already have them.

Single Product and Game Details

get_item accepts a product slug and returns the full detail record: UUID, name, price, raw_price (original pre-discount figure), status, images array with each image's id and url, a seller object with username, rating, and testimonial_count, and nested game and category objects. To look up which game UUIDs and category UUIDs are available for use in list_items, use search_games, which accepts a free-text query, an optional game_type filter (GAME, MOBILE_GAME, or APPLICATION), and a limit. Its response contains a games array and a total_count.

Categories and Featured Products

list_categories returns all top-level marketplace categories (examples include Донат, Аккаунты, Предметы, and Ключи) as an array with a total_count. These category slugs feed directly into the category_slug parameter of list_items. get_top_items returns a products array of homepage-promoted listings across all games, useful for surfacing high-visibility inventory without specifying any game filter.

Common use cases
  • Monitor price trends for in-game items on Playerok by polling list_items with sort_field=price for a specific game_id.
  • Build a game-specific deal finder that filters list_items by category_slug and sorts ascending by price to surface the cheapest listings.
  • Aggregate seller reputation data by reading the rating and testimonial_count fields from get_item responses across multiple products.
  • Display featured marketplace inventory on a gaming portal using get_top_items to pull the current set of promoted listings.
  • Resolve available game UUIDs and their associated category IDs with search_games before constructing filtered list_items queries.
  • Track listing status changes over time by periodically calling get_item for a set of known product slugs and comparing the status field.
  • Enumerate all available marketplace categories via list_categories to build a dynamic navigation or filter UI.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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 Playerok have an official public developer API?+
Playerok does not publish an official public developer API or documented REST/GraphQL interface for third-party use. This Parse API is the structured access layer.
How does pagination work in `list_items`?+
The response includes a page_info object with has_next_page and end_cursor. Pass end_cursor as the cursor parameter in the next request to advance through results. To walk backwards, use has_previous_page and start_cursor. Each page returns at most 50 items.
What is the difference between `price` and `raw_price` in `get_item`?+
price reflects the current listed price, while raw_price holds the original price before any discount or promotion. When the two values differ, the listing has a reduced price relative to its initial posting.
Does the API return seller transaction history or individual testimonial text?+
Not currently. The API exposes rating and testimonial_count on the seller object, but individual review text and transaction histories are not included in any endpoint response. You can fork this API on Parse and revise it to add an endpoint targeting seller-level detail pages.
Can I filter `list_items` by price range?+
Not currently. list_items supports sorting by price via sort_field and sort_direction, but there are no min_price or max_price filter parameters. You can fork this API on Parse and revise it to add price-range filtering if the underlying data supports it.
Page content last updated . Spec covers 5 endpoints from playerok.com.
Related APIs in MarketplaceSee all →
lowes.com API
Search and browse products from Lowe's, including product listings by category, detailed product information, and pricing. Retrieve comprehensive details on specific items to compare options and make informed purchasing decisions.
bigbasket.com API
Browse and search BigBasket's online grocery catalog. Retrieve product details, pricing, stock availability, category trees, search suggestions, homepage promotions, and delivery coverage — all in one API.
jula.fi API
Search and browse products from Jula.fi to find hardware items with detailed information including prices (with and without VAT), stock availability, brand details, and product SKUs. Explore products by category or search for specific items to compare pricing and check real-time stock status.
carsforsale.com API
Search vehicle listings and browse detailed car inventory by make, model, and trim to find the perfect vehicle on CarsForSale.com. Access comprehensive listing details including pricing, specifications, and availability all in one place.
zapimoveis.com.br API
Search and filter real estate listings across Brazil on ZAP Imóveis — the country's largest property portal. Retrieve listings for sale or rent with detailed attributes including price, location, size, bedrooms, bathrooms, parking, and amenities. Supports location autocomplete, property type discovery, and full listing detail retrieval.
leroymerlin.fr API
Search and browse Leroy Merlin France's complete product catalog to find items by category, view pricing, product details, and compare offerings from Leroy Merlin and their online partners. Access real-time product information including names, IDs, URLs, and seller details to help you discover and evaluate home improvement and DIY products.
industrynet.com API
Find industrial suppliers and browse product categories across a comprehensive marketplace directory. Connect directly with suppliers by viewing detailed listings and submitting contact inquiries programmatically.
bilbasen.dk API
Search Denmark's largest car marketplace to find vehicles by make and model, then access detailed pricing and technical specifications including emissions, weight, MSRP, battery size, and equipment details. Get comprehensive car listings and full specs to compare vehicles on Bilbasen.dk.