Discover/Boygars API
live

Boygars APIboygars.com

Access Boygars luxury multibrand store product catalog via API. Retrieve item listings, pricing in GEL, sizes, color variants, and stock info.

This API takes change requests — .
Endpoint health
verified 5h ago
list_products
get_product
2/2 passing latest checkself-healing
Endpoints
2
Updated
6h ago

What is the Boygars API?

The Boygars API provides 2 endpoints to access the full product catalog of Boygars, a luxury multibrand fashion store based in Tbilisi, Georgia. Use list_products to retrieve all item/color combinations across the catalog — optionally filtered by gender — and get_product to pull detailed records including localized names in three languages, current GEL pricing, composition, available sizes, color variants with media URLs, and live stock status.

Try it
Filter products by gender category.
api.parse.bot/scraper/23039631-719c-4b84-a797-026ee9aea0d7/<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/23039631-719c-4b84-a797-026ee9aea0d7/list_products?gender=women' \
  -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 boygars-com-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: boygars SDK — bounded, re-runnable; every call capped."""
from parse_apis.boygars_com_api import Boygars, Gender, ProductNotFound

client = Boygars()

# List women's products (item/color pairs); limit caps total items fetched.
for record in client.products.list(gender=Gender.WOMEN, limit=3):
    print(record.item_id, record.color_id)

# Take one item_id and fetch its full details.
first = client.products.list(gender=Gender.MEN, limit=1).first()
try:
    product = client.products.get(item_id=str(first.item_id))
    print(product.name, product.price, product.composition)
except ProductNotFound as e:
    print("not found:", e.item_id)

print("exercised: products.list, products.get")
All endpoints · 2 totalmissing one? ·

Returns the full product catalog as item/color pairs. Each record carries an item_id and a color_id; multiple records may share the same item_id when that item is available in several colors. Optionally filter by gender. The response is a single page containing all matching products.

Input
ParamTypeDescription
genderstringFilter products by gender category.
Response
{
  "type": "object",
  "fields": {
    "products": "array of product records with item_id and color_id",
    "total_records": "total item/color pair count",
    "total_unique_items": "count of distinct item IDs"
  },
  "sample": {
    "data": {
      "products": [
        {
          "item_id": 10390,
          "color_id": 5
        },
        {
          "item_id": 10362,
          "color_id": 21
        }
      ],
      "total_records": 3100,
      "total_unique_items": 2806
    },
    "status": "success"
  }
}

About the Boygars API

Catalog Browsing with list_products

The list_products endpoint returns every product in the Boygars catalog as a flat list of item/color pairs, each carrying an item_id and a color_id. Because a single garment may be available in multiple colorways, one item_id can appear in several records. The response always includes total_records (the full item/color pair count) and total_unique_items (the count of distinct items). An optional gender parameter narrows results to men's or women's offerings.

Product Details with get_product

Passing an item_id from list_products to get_product retrieves the complete product record. The response includes the product name in English, Georgian, and Russian; the price field expressed as an integer in GEL (divide by 100 for the decimal value); an article code; and structured details covering composition and features. The sex field uses a numeric code (1 for men, 2 for women). The record also exposes a lux flag indicating luxury tier, style tags, a text_id URL slug, and an enabled flag showing whether the item is currently active in the store.

Coverage and Scope

The API covers the entire Boygars catalog without pagination — list_products returns all matching records in a single response. Color variant media URLs are available through get_product, making it straightforward to display images alongside availability data. Pricing is in Georgian Lari (GEL).

Reliability & maintenanceVerified

The Boygars API is a managed, monitored endpoint for boygars.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when boygars.com 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 boygars.com 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
5h ago
Latest check
2/2 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 price tracker for Boygars GEL-denominated luxury items using the price field from get_product.
  • Aggregate men's and women's catalog counts separately using the gender filter in list_products.
  • Sync Boygars inventory into an internal product database using enabled and stock fields from get_product.
  • Display localized product names for Georgian, English, and Russian audiences using the multilingual name field.
  • Enumerate all colorways for a given item by matching item_id records with distinct color_id values from list_products.
  • Generate a product feed with slugs, tags, and media URLs from text_id, tags, and color variant URLs in get_product.
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 Boygars have an official developer API?+
Boygars does not publish a public developer API. This Parse API is the available programmatic way to access their product catalog data.
What does the gender filter in list_products actually control?+
Passing a value to the gender parameter limits returned item/color pairs to products tagged for that gender category. The sex field in get_product uses numeric codes: 1 for men, 2 for women. Both endpoints reflect the same gender classification used in the Boygars catalog.
Does the API return customer reviews or ratings for products?+
Not currently. The API covers product metadata, pricing, stock, sizes, color variants, and localized names. You can fork it on Parse and revise it to add a review or rating endpoint if that data becomes accessible.
Is the price field returned in a standard decimal format?+
The price field in get_product is returned as an integer in Georgian Lari (GEL). To get the standard decimal price, multiply by 0.01. For example, a value of 45000 represents 450.00 GEL.
Does the API support filtering by brand, category, or price range within list_products?+
Currently the only filter available in list_products is gender. Brand, category, and price-range filtering are not exposed. You can fork the API on Parse and revise it to add those filtering parameters.
Page content last updated . Spec covers 2 endpoints from boygars.com.
Related APIs in EcommerceSee all →
banggood.com API
Search Banggood products and retrieve detailed information including prices, specifications, and customer reviews to help you discover items and make informed purchasing decisions. Perfect for monitoring inventory, comparing products, and staying updated on what's available across Banggood's catalog.
catalog.onliner.by API
Search and compare products from Onliner.by's catalog with access to real-time prices, detailed product information, customer reviews, and historical price trends. Browse categories, get autocomplete suggestions, and view all available offers for any product to make informed purchasing decisions.
bug.co.il API
Search and browse products from Bug.co.il, Israel's leading electronics retailer. Access product listings by keyword or category, retrieve detailed product information including specs, pricing, and images, and view featured homepage promotions — all through a single API.
bootbarn.com API
Search Boot Barn's catalog of western wear and cowboy boots by keyword with customizable filters, view detailed product information, and discover related items through search suggestions. Find exactly what you're looking for with autocomplete recommendations while browsing Boot Barn's full selection of authentic western apparel and footwear.
megamarket.ru API
Search and browse products across MegaMarket.ru's catalog, view detailed product information with customer reviews, and explore catalog categories to discover items available on Sber's Russian marketplace. Get real-time search suggestions and product recommendations to help you find exactly what you're looking for.
bidorbuy.co.za API
Search and browse products on Bob Shop, view detailed product information, seller profiles and ratings, explore category listings, and discover current promotions. Get search suggestions and navigate the complete product catalog to find exactly what you're looking for.
wildberries.ru API
Search products on Wildberries and retrieve detailed information including specifications, reviews, and pricing to compare items and make informed purchasing decisions. Get autocomplete suggestions while browsing and access comprehensive product details all in one place.
ozon.ru API
Access data from ozon.ru.