kixify.com APIkixify.com ↗
Access Kixify sneaker listings, size-price matrices, seller profiles, and brand categories via 10 endpoints. Search, filter by condition, size, and sort order.
curl -X GET 'https://api.parse.bot/scraper/f9f376fe-a473-4330-a47e-2d9521754e81/search_listings?page=0&keyword=jordan' \ -H 'X-API-Key: $PARSE_API_KEY'
Search for sneaker listings by keyword with optional filters. Returns paginated results from the Kixify marketplace.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number (0-indexed). |
| size | string | Shoe size filter (e.g. '10'). |
| sort | string | Sort order: 'popular', 'newest', 'lowest', 'highest'. |
| gender | string | Gender filter. |
| keywordrequired | string | Search keyword (e.g. 'jordan', 'nike dunk'). |
| shipping | string | Shipping filter. |
{
"type": "object",
"fields": {
"query": "string - the search keyword used",
"listings": "array of listing objects with name, url, price, discount, thumbnail"
},
"sample": {
"data": {
"query": "jordan",
"listings": [
{
"url": "https://www.kixify.com/air-jordan-11-gamma",
"name": "Air Jordan 11 Gamma",
"price": "$214",
"discount": "",
"thumbnail": "https://4app.kicksonfire.com/kofapp/upload/events_master_images/thumb_ipad_air-jordan-11-gamma.png"
}
]
},
"status": "success"
}
}About the kixify.com API
The Kixify API provides 10 endpoints for retrieving sneaker marketplace data from Kixify.com, covering search results, individual listing details, seller profiles, brand navigation, and size-to-price grids. The get_sneaker_model_detail endpoint, for example, returns a full size matrix across Kids, Men, and Women categories alongside SKU, colorway, retail price, and a complete JSON-LD Product schema object.
Search and Browse Listings
The search_listings endpoint accepts a required keyword and optional filters for size, sort (popular, newest, lowest, highest), gender, and shipping. Results are paginated using a 0-indexed page parameter and return an array of listing objects, each with name, url, price, discount, and thumbnail. The get_category_listings endpoint works similarly but navigates by brand slug (e.g. air-jordan, new-balance) and an optional subcategory slug — both discoverable via get_brands_list, which returns the full brand navigation tree with slugs and nested subcategory arrays.
Product and Listing Detail
get_sneaker_model_detail retrieves the canonical model page for a sneaker, returning sku, brand, colorway, model_name, description, retail_price, a list of images, and a size_matrix object that maps sizing categories (Kids, Men, Women) to size-price pairs. If you need the size matrix in isolation, get_size_price_matrix returns just that object for a given sneaker_slug. For individual seller listings, get_product_listing_detail returns the listing title, price, tags, condition, style_code, and a seller object with username, feedback percentage, and a verified boolean.
Seller Profiles and Cross-Listing
get_seller_profile takes a username and returns the seller's location, join_date, feedback percentage, and their active listings array. To find competing sellers for a specific model, get_other_sellers_for_model accepts a style_code (e.g. CT8012-047) and returns an array of sellers with their seller_name, feedback, price, and listing_url. Style codes are exposed in get_product_listing_detail response under details.style_code.
Filtering by Condition and Featured Content
filter_listings_by_condition lets you filter the marketplace by Brand New or Pre-Owned, with an optional keyword to narrow results further. Each listing in the response includes a condition field alongside the standard thumbnail and pricing fields. The get_homepage_featured endpoint requires no inputs and returns the current featured listings array from the Kixify homepage.
- Track asking prices across sizes for a specific sneaker model using the size_matrix from get_sneaker_model_detail
- Compare seller feedback and prices for the same style code using get_other_sellers_for_model
- Build a brand-browsing interface using get_brands_list slugs piped into get_category_listings
- Monitor pre-owned vs. brand-new price gaps for a keyword with filter_listings_by_condition
- Aggregate seller reputation data (feedback percentage, join date, location) via get_seller_profile
- Surface trending sneakers on a landing page using get_homepage_featured
- Cross-reference retail price against current marketplace listings using the retail_price field from get_sneaker_model_detail
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 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.