Discover/ruby-lane.com API
live

ruby-lane.com APIruby-lane.com

Access Ruby Lane listings, item details, shop profiles, and category browsing via API. Extract prices, conditions, descriptions, and seller info.

Endpoints
4
Updated
3mo ago
Try it
Page number
Sort order (e.g. price_low_high)
Search keyword
api.parse.bot/scraper/4cad73ed-f164-468f-a7ca-9c33ca518e36/<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/4cad73ed-f164-468f-a7ca-9c33ca518e36/search_items' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 4 totalclick to expand

Search for vintage and antique items by keyword

Input
ParamTypeDescription
pageintegerPage number
sortstringSort order (e.g. price_low_high)
queryrequiredstringSearch keyword
Response
{
  "type": "object",
  "fields": {
    "page": "string",
    "items": "array",
    "query": "string"
  },
  "sample": {
    "page": "1",
    "items": [
      {
        "url": "https://www.rubylane.com/item/...",
        "image": "https://cdn.example.com/item.jpg",
        "price": "$150.00",
        "title": "Vintage Gold Brooch",
        "shop_name": "Antique Treasures"
      }
    ],
    "query": "jewelry"
  }
}

About the ruby-lane.com API

The Ruby Lane API provides 4 endpoints for extracting listing data from Ruby Lane, a curated marketplace for antiques, collectibles, and vintage jewelry. The search_items endpoint accepts a keyword query plus optional pagination and sort parameters, returning matched item arrays. get_item_details delivers per-listing fields including price, currency, condition, description, and seller name. browse_category and get_shop round out coverage of category-level and dealer-level data.

Search and Category Browsing

The search_items endpoint accepts a required query string along with an optional page integer and sort parameter (e.g. price_low_high). It returns the matched items array alongside the echoed query and current page string — useful for paginating through result sets programmatically. The browse_category endpoint works similarly but navigates by category slug such as jewelry, dolls, or art, letting you pull all listings within a specific Ruby Lane category without crafting a keyword query.

Item Detail Retrieval

Passing a full item listing URL to get_item_details returns a structured record with six fields: name, price (as a number), currency, condition, description, and seller. The condition and description fields are particularly relevant for antiques and collectibles research, where item provenance and grading directly affect valuation. The numeric price field enables sorting and comparison logic on the client side without string parsing.

Shop Profiles

The get_shop endpoint accepts a shop_slug taken from a Ruby Lane shop URL and returns the shop's shop_name, location, and description. This is the primary way to profile individual dealers — for instance, to identify seller geography or build a directory of shops by region. Shop-level data complements item-level data when building sourcing tools or dealer research workflows.

Common use cases
  • Compare prices across Ruby Lane listings for a specific antique or collectible by keyword using search_items
  • Monitor new listings in a category like art or dolls by polling browse_category with pagination
  • Extract item condition and description from get_item_details to assess authenticity and grading for resale research
  • Build a dealer directory using get_shop to collect shop name, location, and description across multiple sellers
  • Aggregate currency-normalized pricing data from get_item_details for market valuation analysis
  • Track seller inventory by combining get_shop slug data with search_items queries filtered to that seller
  • Identify regional antique dealers by extracting the location field from multiple get_shop calls
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 Ruby Lane offer an official developer API?+
Ruby Lane does not publish a public developer API or documented data access program. This Parse API is the structured way to access Ruby Lane listing and shop data programmatically.
What does `get_item_details` return, and does it include seller ratings or reviews?+
It returns name, price, currency, condition, description, and seller. Seller ratings and buyer reviews are not currently included in the response. The API covers item-level attributes and seller name. You can fork it on Parse and revise to add a reviews or ratings endpoint.
Does the API return sold or historical listings?+
The API surfaces active listings through search_items, browse_category, and get_item_details. Sold or archived listings are not currently covered. You can fork the API on Parse and revise it to add an endpoint targeting sold item data if that becomes available from the source.
How does pagination work across endpoints?+
search_items and browse_category both accept an optional page integer parameter. The response echoes back the current page as a string. There is no total-page-count field returned, so you would need to iterate pages until an empty items array is returned to detect the end of results.
Can I retrieve all items listed in a specific shop?+
get_shop returns the shop's profile fields — shop_name, location, and description — but does not return an inventory list directly. A shop's listings are not currently enumerable through a dedicated shop-inventory endpoint. You can fork the API on Parse and revise it to add shop-level inventory browsing.
Page content last updated . Spec covers 4 endpoints from ruby-lane.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.
Ruby Lane API – Antiques & Collectibles Data · Parse