ibanez.com APIibanez.com ↗
Access Ibanez USA bass guitar specs, series, models, dealers, news, and artists via API. 8 endpoints covering the full electric bass catalog.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/8b04622a-a8d4-409f-b06d-e88c9dc5c4d5/list_bass_series' \ -H 'X-API-Key: $PARSE_API_KEY'
List all electric bass guitar series available on the Ibanez USA website. Returns an array of series objects containing names, descriptions, and identifiers.
No input parameters required.
{
"type": "object",
"fields": {
"series": "array of series objects, each containing _key (series identifier), cf_ps_name_us (display name), cf_ps_desc_us (description), and regional metadata"
},
"sample": {
"data": {
"series": [
{
"_key": "sr_prestige",
"cf_ps_name_us": "SR Prestige",
"cf_ps_regions": [
"us",
"na",
"eu"
]
}
]
},
"status": "success"
}
}About the ibanez.com API
The Ibanez USA API gives developers access to 8 endpoints covering the complete electric bass catalog at ibanez.com, including series listings, per-model specs, dealer locations, news, and endorsed artists. The get_bass_guitar_detail endpoint returns granular fields like cf_data_scale_mm, cf_cm_neck_material, cf_data_fretboard, and pickup descriptions for individual models. Whether you're building a gear comparison tool or a dealer locator, the data maps directly to what Ibanez publishes on their US site.
Bass Catalog Endpoints
The API starts with list_bass_series, which returns an array of series objects — each with a _key identifier, a cf_ps_name_us display name, and a cf_ps_desc_us description. That _key feeds directly into list_bass_guitars_by_series, which accepts a series_id parameter (e.g., sr_prestige, icb_standard) and returns all models in that series with fields including body material, fretboard, and pickup configurations. If you want everything at once, list_bass_guitars aggregates products across all series and returns a total count alongside the full product array — though it runs slower by design.
Model Detail and Search
get_bass_guitar_detail takes a product_id in the form sr6605_00_01 or icb720fm_1p_01 — the identifier surfaced by list_bass_guitars_by_series — and returns the deepest level of spec data: scale length in mm (cf_data_scale_mm), neck wood (cf_cm_neck_material), neck and bridge pickup descriptions, body material, and US model number (cf_cm_us_model_no). The search_products endpoint accepts a free-text query (e.g., SR600, GSR, ICB) and matches against model numbers and product codes, returning total hit count and a full array of matching product objects.
Dealers, News, and Artists
get_dealers returns authorized US dealers organized by state, with each dealer record including name, address, tel, and site. get_news pulls the latest announcements from the Ibanez USA news page, returning each item's title and a full URL. get_artists lists Ibanez-endorsed bass artists from the electric basses category, with each entry carrying a name and a direct URL to the artist's detail page on ibanez.com.
- Build a bass guitar spec comparison tool using
cf_data_scale_mm,cf_cm_neck_material, and pickup fields fromget_bass_guitar_detail. - Populate a dealer locator map using state, address, and phone data from
get_dealers. - Display the latest Ibanez product announcements in a gear news feed using
get_newstitles and URLs. - Create a series browser that walks users from
list_bass_seriesthroughlist_bass_guitars_by_seriesto individual model specs. - Index the full Ibanez bass catalog for site search using
list_bass_guitarsandsearch_products. - Show endorsed artist profiles alongside their signature bass models by combining
get_artistsURLs with product searches. - Track new model additions over time by periodically polling
list_bass_guitarsand diffing thetotalfield.
| 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.
Does Ibanez have an official public developer API?+
What does `get_bass_guitar_detail` return that the list endpoints do not?+
get_bass_guitar_detail returns the most granular spec fields: cf_data_scale_mm (scale length in millimeters), cf_cm_neck_material (neck wood), cf_data_fretboard, cf_data_neck_pickup, cf_data_bridge_pickup, and cf_data_body_material. The list endpoints like list_bass_guitars_by_series include a subset of these fields, but get_bass_guitar_detail is the authoritative source for per-model hardware specs.Does the API cover Ibanez electric guitars, acoustics, or other instrument categories beyond electric bass?+
Does `get_dealers` cover dealers outside the United States?+
Is there any filtering or pagination on `list_bass_guitars` when the catalog is large?+
list_bass_guitars returns all products across every series in a single response with a total count, but does not currently expose filter or pagination parameters. The endpoint is noted to be slower than the per-series call. For targeted retrieval, use list_bass_guitars_by_series with a specific series_id, or use search_products with a keyword query to narrow results.