Skip to content
English
  • There are no suggestions because the search field is empty.

API Developer Resources & Links - Getting Started

Latest Links for developer-centric resources

 

1. Access the API Documentation

Visit our API portal here:

👉 ResellerRatings API Reference

The documentation includes:

  • Endpoints for reviews, sellers, tags, and more

  • Query parameters (pagination, star filters, date ranges, etc.)

  • Response formats in JSON

  • Code samples in multiple languages (Shell, Python, PHP, Ruby)

Overview

The ResellerRatings API allows you to programmatically retrieve and interact with review, seller, and shopper profile data from your account. Developers can use our API to pull reviews, access seller ratings, and connect ResellerRatings data into their own applications or workflows.

 

What is the ResellerRatings API?

The ResellerRatings API is how our clients connect their reviews, ratings, and shopper profile data directly into their own systems.

Think of it as a bridge: instead of logging into our dashboard every time, the API lets them automate, export, and integrate review data wherever they work.

Our API documentation is hosted on ReadMe.io for interactive testing, sample code, and parameter references.

 

Common Use Cases

  • E-commerce integrations

    Show the latest reviews and ratings on product pages in real-time.

  • Marketing automation

    Pull reviews into Klaviyo, HubSpot, or Marketo campaigns to target happy customers for referral programs—or re-engage unhappy ones.

  • Analytics & BI dashboards

    Push ResellerRatings data into Tableau, PowerBI, or Looker for executive reporting.

  • Customer service workflows

    Alert CX teams when a low-star review comes in, tied with order data, so they can follow up fast and potentially reclaim revenue.

 

2. Authentication

All API requests require authentication via OAuth2 with a Bearer token.

 

  1. Log into your ResellerRatings Business account.

  2. Navigate to your API credentials section.

  3. Generate and copy your Bearer token.

  4. Use this token in the Authorization header of your request:

curl --request GET \
  --url https://api.resellerratings.com/v1/seller/{id}/reviews \
  --header 'accept: application/json' \
  --header 'authorization: Bearer YOUR_TOKEN_HERE'

 

3. Testing in ReadMe.io

Our ReadMe.io API explorer lets you try requests directly in the browser.

  1. Open the endpoint you want to test (e.g., Get Review Information by Seller).

  2. Enter required parameters such as:

     

    • id → Your Seller ID

    • page → Page number (default = 1)

    • perPage → Number of reviews to return (default = 5, max = 100)

     

  3. Paste in your Bearer token under “Credentials.”

  4. Click Try It! to view a real JSON response from your account.

 

4. Example Response

Here’s a sample JSON response for fetching reviews:

{
  "reviews": [
    {
      "id": "12345",
      "rating": 5,
      "title": "Great experience!",
      "body": "Shipping was fast and product quality was excellent.",
      "author": "John D.",
      "created_at": "2025-08-15T12:00:00Z"
    }
  ],
  "page": 1,
  "perPage": 5,
  "total": 250
}

 

Popular Endpoints

 

  • Get Review Information By Seller

    Retrieve paginated review data for a specific seller ID.

  • Get Seller Ratings by Seller ID

    Pull aggregated rating information for a seller.

  • Get Review Information for a Specific Review

    Retrieve detailed content for an individual review.

 

Support

If you encounter issues: