BouncerLink Products API

Supercharge your Amazon affiliate business with our powerful product search API

Get Started

Why Choose Our API?

Reliable Product Data

Access real-time Amazon product information with high availability and accurate results.

Easy Integration

Simple REST API with comprehensive documentation and example code in multiple languages.

Scale Your Business

Built for Amazon affiliates to automate and scale their product discovery and listing processes.

Smart API Management

Advanced caching and race condition prevention ensure efficient API usage while staying within Amazon's quota limits.

API Documentation

Authentication

All API requests require an API key that should be included in the X-Api-Key HTTP header.

curl -X POST "https://www.bouncerlink.com/products/search" \ -H "X-Api-Key: your_api_key" \ -H "Content-Type: application/json" \ -d '{ "keywords": "search terms", "amazon_access_key_id": "your_amazon_key", "amazon_secret_access_key": "your_amazon_secret", "associate_tag": "your_tag", "locale": "en_US", "cache_ttl": 36000 }'

OpenAPI Specification

We provide a complete OpenAPI (formerly Swagger) specification for our API. You can:

  • Download our OpenAPI specification
  • Import it into tools like Postman or Swagger UI
  • Generate client libraries for your programming language
  • Use the Swagger UI to explore the API

Make sure to keep your API key secure and never expose it in client-side code.

Request Headers

Header Description
X-Api-Key Your API authentication key. Get this from your dashboard.
Content-Type Must be set to application/json

Required Body Parameters

Parameter Description
keywords Search terms for product search
amazon_access_key_id Your Amazon API access key
amazon_secret_access_key Your Amazon API secret key
associate_tag Your Amazon Associate tag

Optional Body Parameters

Parameter Description
locale Target marketplace locale (e.g., en_US). See supported locales.
cache_ttl Cache time-to-live in seconds. Default is 3600 (1 hour).

Example Response

{
  "products": [
    {
      "title": "Example Product",
      "price_amount": 19.99,
      "currency": "USD",
      "display_amount": "$19.99",
      "locale": "en_US",
      "image_urls": {
        "small": "https://amazon.com/small.jpg",
        "medium": "https://amazon.com/medium.jpg",
        "large": "https://amazon.com/large.jpg"
      },
      "detail_page_url": "https://amazon.com/product",
      "identifiers": {
        "asin": "B00EXAMPLE",
        "isbn": "9780000000000",
        "ean": "9780000000000",
        "upc": "000000000000"
      },
      "brand": "Brand Name"
    }
  ],
  "search_url": "https://amazon.com/search"
}

Get Started

  1. Sign up for an account

    Create an account to get your API credentials

  2. Configure your Amazon credentials

    Add your Amazon API access key, secret key, and associate tag

  3. Make your first API call

    Use our example code to make your first product search