Discover/Adorama API
live

Adorama APIadorama.com ↗

Search Adorama's catalog, retrieve full product details by SKU, and browse electric guitars with brand filters and sorting via 4 structured JSON endpoints.

Endpoint health
verified 5d ago
search_products
get_electric_guitar_detail
list_electric_guitars
get_product
4/4 passing latest checkself-healing
Endpoints
4
Updated
6d ago

What is the Adorama API?

The Adorama API exposes 4 endpoints covering product search across the full Adorama catalog, category browsing for electric guitars, and per-SKU detail retrieval. The search_products endpoint queries the entire catalog — cameras, audio gear, computers, musical instruments, and more — returning fields like sku, price, you_save_percent, stock_status, and total_pages per call. The get_product endpoint adds GTIN, MPN, rating, is_used flag, and a full image gallery for any SKU.

This call costs2 credits / call— charged only on success
Try it
Page number for pagination (1-based).
Filter results by brand name (e.g. Fender, Ibanez, Gretsch, Charvel, EVH, Jackson, Schecter, Washburn). Omitting returns all brands.
Sort order for results.
→ api.parse.bot/scraper/1819ce27-9fd2-4713-8fea-f923e0461978/<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/1819ce27-9fd2-4713-8fea-f923e0461978/list_electric_guitars?page=1&brand=Ibanez&sort_by=relevancy' \
  -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 adorama-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: Adorama SDK — search the catalog, drill into details, and browse electric guitars."""
from parse_apis.adorama_com_api import Adorama, SortBy, InputNotFound

client = Adorama()

# Search the full catalog for tripods, capped at 5 results
for item in client.product_summaries.search(query="camera tripod", limit=5):
    print(item.title, item.price, item.stock_status)

# Take the first search hit and navigate to full product detail
hit = client.product_summaries.search(query="carbon fiber tripod", limit=1).first()
if hit:
    product = hit.details()
    print(product.title, product.brand, product.price, product.currency)
    print("Includes:", product.includes)
    for variant in product.variants:
        print(variant.sku, variant.condition, variant.price)

# Browse electric guitars filtered by brand, sorted by price
for guitar in client.electric_guitar_summaries.list(brand="Ibanez", sort_by=SortBy.PRICE_LOW, limit=3):
    print(guitar.title, guitar.price, guitar.you_save_dollar)

# Drill from a guitar summary into its full detail page
summary = client.electric_guitar_summaries.list(brand="Fender", limit=1).first()
if summary:
    detail = summary.details()
    print(detail.title, detail.stock_status, detail.is_discontinued)
    for v in detail.variants:
        print(v.sku, v.stock_status, v.price)

# Point-lookup a product by SKU discovered from a previous search
if hit:
    try:
        full = client.products.get(sku=hit.sku)
        print(full.title, full.rating, full.review_count)
    except InputNotFound:
        print("Product not found")

print("exercised: product_summaries.search / products.get / electric_guitar_summaries.list / summary.details")
All endpoints · 4 totalmissing one? ·

List electric guitar products from Adorama's catalog, one page (24 items) per call; `page` selects the page and `total`/`total_pages` come from the site's result count. Supports sorting (relevancy, price low/high, % savings, newest, rating) and filtering by brand. Each product summary carries pricing (price, list price, savings), stock status and label, category, highlights, rating and review count, and condition flags.

Input
ParamTypeDescription
pageintegerPage number for pagination (1-based).
brandstringFilter results by brand name (e.g. Fender, Ibanez, Gretsch, Charvel, EVH, Jackson, Schecter, Washburn). Omitting returns all brands.
sort_bystringSort order for results.
Response
{
  "type": "object",
  "fields": {
    "page": "integer",
    "total": "integer, site-reported number of matching products",
    "per_page": "integer",
    "products": "array of product summaries (sku, title, brand, price, high_price, you_save_dollar, you_save_percent, stock_status, stock_label, badge_text, product_url, image_url, category_id, category_path, mfr, highlights, is_pre_order, is_used, is_refurbished, is_available_for_purchase, free_shipping, variant_count, rating, review_count)",
    "total_pages": "integer"
  },
  "sample": {
    "data": {
      "page": 1,
      "total": 175,
      "per_page": 24,
      "products": [
        {
          "mfr": "GRGM21WH",
          "sku": "IBGRGM21WH",
          "brand": "Ibanez",
          "price": 199.99,
          "title": "Ibanez miKro Series GRGM21 Electric Guitar, Rosewood Fretboard, White",
          "rating": 5,
          "is_used": false,
          "image_url": "https://www.adorama.com/images/product/ibanez-mikro-grgm21-white_ibgrgm21wh.webp",
          "badge_text": "30% Off",
          "high_price": 285.7,
          "highlights": [
            "Ibanez GRGM21 Electric Guitar: Superior Playability.",
            "Poplar Body Provides Balanced Tone for Electric Guitar."
          ],
          "category_id": 232734,
          "product_url": "https://www.adorama.com/ibanez-mikro-grgm21-electric-guitar-rosewood-white/p/ibgrgm21wh",
          "stock_label": "On Backorder",
          "is_pre_order": false,
          "review_count": 2,
          "stock_status": "Out",
          "category_path": "Musical Instruments/Guitars/Electric Guitars",
          "free_shipping": "Free Shipping",
          "variant_count": null,
          "is_refurbished": false,
          "you_save_dollar": 85.71,
          "you_save_percent": 30,
          "is_available_for_purchase": true
        }
      ],
      "total_pages": 8
    },
    "status": "success"
  }
}

About the Adorama API

Catalog Search and Browsing

The search_products endpoint accepts a query string and returns up to 24 product summaries per page. The brand parameter filters results to a single brand as Adorama displays it (e.g. Sony, Canon), while sort_by controls ordering — relevancy, price ascending/descending, percent savings, newest, or rating. Each result in the products array includes sku, title, brand, price, high_price, you_save_dollar, you_save_percent, stock_status, and stock_label. The total, total_pages, and has_more fields let you paginate across the full result set.

Electric Guitar Category

The list_electric_guitars endpoint browses Adorama's electric guitar category with the same pagination model (24 items per page). The brand parameter accepts guitar-specific values like Fender, Ibanez, Gretsch, Charvel, EVH, Jackson, Schecter, and Washburn. You can combine brand filtering with any supported sort_by value. The get_electric_guitar_detail endpoint goes deeper on a single SKU, returning variants (each with individual pricing and stock status), a highlights array of feature descriptions, and product_url.

Per-SKU Product Details

The get_product endpoint works for any SKU from anywhere in Adorama's catalog, not just guitars. It returns price, currency, gtin (when published), mpn (manufacturer part number), rating, is_used, and an images array of gallery URLs for the active variant. The is_used boolean distinguishes used or open-box listings from new inventory. For guitar-specific listings, get_electric_guitar_detail additionally returns category_id, main_category, and a full variants array covering option-level stock and pricing.

Reliability & maintenanceVerified

The Adorama API is a managed, monitored endpoint for adorama.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when adorama.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 adorama.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
5d 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
  • Track price and stock changes for specific camera or lens SKUs using get_product on a scheduled basis
  • Compare you_save_percent across electric guitar brands using list_electric_guitars with the brand filter
  • Build a used gear monitor by filtering get_product results where is_used is true
  • Aggregate GTIN/UPC data from get_product responses for catalog enrichment or cross-marketplace matching
  • Surface highlights and variants from get_electric_guitar_detail to power a guitar comparison tool
  • Index Adorama product titles, SKUs, and ratings via search_products for a price-comparison site covering photography or audio equipment
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Adorama have an official public developer API?+
Adorama does not publish a public developer API or documented partner API for third-party catalog access.
What does `get_product` return that `search_products` does not?+
get_product adds gtin (UPC), mpn (manufacturer part number), is_used, currency, images (full gallery URLs), and a numeric rating. The search_products and list_electric_guitars endpoints return summary-level data suited for listing pages, not full product identity or image sets.
Does the electric guitar detail endpoint cover other instrument categories such as bass guitars or acoustic guitars?+
Not currently. The list_electric_guitars and get_electric_guitar_detail endpoints are scoped to the electric guitar category. For other instrument types you can use search_products with a relevant query. You can also fork this API on Parse and revise it to add a dedicated endpoint for bass or acoustic guitars.
Are seller reviews or written customer review text available?+
Not currently. The API exposes an aggregate numeric rating field from get_product but does not return individual review text, reviewer names, or review counts. You can fork this API on Parse and revise it to add a reviews endpoint if that data is available on the product page.
How does pagination work across endpoints?+
All listing endpoints use 1-based page numbering and return 24 items per page (per_page: 24). The total and total_pages fields come from Adorama's reported match count, so you can calculate how many calls are needed before fetching. search_products also includes a has_more boolean as a direct next-page signal.
Page content last updated . Spec covers 4 endpoints from adorama.com.
Related APIs in EcommerceSee all →
guitarcenter.com API
Search Guitar Center's electric guitar catalog to instantly access product listings with pricing, customer reviews, and detailed specifications across different variants. Compare guitars and find the perfect instrument with complete product information all in one place.
bhphotovideo.com API
Search and browse B&H Photo's massive inventory of cameras, electronics, and photography gear with instant access to pricing, specifications, images, and customer reviews. Filter products by category, compare detailed specs, and discover used items all in one integrated platform.
sweetwater.com API
Search Sweetwater's catalog of musical instruments, audio equipment, and accessories to find products with detailed pricing, availability, ratings, and images. Get autocomplete suggestions as you type to quickly discover exactly what you're looking for.
thomann.de API
Search and browse Thomann's music store catalog to find products by category, view detailed specifications and pricing, read customer reviews, and filter results to discover the instruments and gear you're looking for. Access comprehensive product information including descriptions, availability, and ratings all in one place.
emag.ro API
Access product data from eMAG.ro, Romania's largest online retailer. Search by keyword, browse categories, retrieve product details and reviews, and look up seller information.
roland.com API
Search Roland's product catalog to find instruments, equipment, and accessories with detailed specs and availability. Browse product information, specifications, and details directly from Roland's US website to compare models and make informed purchasing decisions.
musiciansfriend.com API
Browse and search Musician's Friend's catalog to find instruments, gear, and accessories with detailed product information, pricing, and real-time availability. Discover daily deals and filter products by category to compare options and find the best equipment for your musical needs.
amoeba.com API
Search and browse Amoeba Music's catalog of vinyl records and CDs, including used listings, to find product details and discover new releases. Check store information to plan your visits to Amoeba's physical locations.