Rakuten Ichibaranking API

The Ichibaranking API from Rakuten — 1 operation(s) for ichibaranking.

Operations 1

GET /ichibaranking/api/IchibaItem/Ranking/20220601 Get Ichiba item ranking #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/rakuten-ichibaranking-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

rakuten-ichibaranking-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Rakuten Web Services Ichibagt Ichibaranking API
  description: 'Public Rakuten Web Services (RWS) REST/JSON APIs for searching the Rakuten

    Ichiba marketplace (item search, genre search, item ranking). All endpoints

    require a Rakuten application ID and access key.

    '
  version: '20260401'
  contact:
    name: Rakuten Web Services
    url: https://webservice.rakuten.co.jp/
servers:
- url: https://app.rakuten.co.jp
  description: Public Rakuten Web Services base host
- url: https://openapi.rakuten.co.jp
  description: Rakuten OpenAPI host (used by current RWS endpoints)
security:
- applicationId: []
  accessKey: []
tags:
- name: Ichibaranking
paths:
  /ichibaranking/api/IchibaItem/Ranking/20220601:
    get:
      summary: Get Ichiba item ranking
      description: Returns top-ranked Ichiba items by genre, age, gender, carrier.
      operationId: getIchibaItemRanking
      servers:
      - url: https://openapi.rakuten.co.jp
      parameters:
      - $ref: '#/components/parameters/applicationId'
      - $ref: '#/components/parameters/accessKey'
      - name: genreId
        in: query
        schema:
          type: integer
          format: int64
      - name: age
        in: query
        schema:
          type: integer
          enum:
          - 10
          - 20
          - 30
          - 40
          - 50
      - name: sex
        in: query
        description: 0=Male, 1=Female.
        schema:
          type: integer
          enum:
          - 0
          - 1
      - name: page
        in: query
        schema:
          type: integer
          minimum: 1
          maximum: 34
      - name: carrier
        in: query
        description: 0=PC, 1=Mobile.
        schema:
          type: integer
          enum:
          - 0
          - 1
      - name: format
        in: query
        schema:
          type: string
          enum:
          - json
          - xml
          default: json
      - name: callback
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Ranking response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IchibaItemRankingResponse'
      tags:
      - Ichibaranking
components:
  schemas:
    RankedItem:
      type: object
      properties:
        rank:
          type: integer
        itemName:
          type: string
        itemPrice:
          type: integer
        itemUrl:
          type: string
        affiliateUrl:
          type: string
        mediumImageUrls:
          type: array
          items:
            type: string
        shopName:
          type: string
        shopCode:
          type: string
        shopUrl:
          type: string
        reviewCount:
          type: integer
        reviewAverage:
          type: number
        availability:
          type: integer
        taxFlag:
          type: integer
        postageFlag:
          type: integer
        creditCardFlag:
          type: integer
    IchibaItemRankingResponse:
      type: object
      properties:
        title:
          type: string
        lastBuildDate:
          type: string
        Items:
          type: array
          items:
            $ref: '#/components/schemas/RankedItem'
  parameters:
    accessKey:
      name: accessKey
      in: query
      required: true
      description: Rakuten access key (may be sent as a header instead).
      schema:
        type: string
    applicationId:
      name: applicationId
      in: query
      required: true
      description: Rakuten application ID.
      schema:
        type: string
  securitySchemes:
    applicationId:
      type: apiKey
      in: query
      name: applicationId
      description: Rakuten application ID (issued from the RWS developer console).
    accessKey:
      type: apiKey
      in: query
      name: accessKey
      description: Rakuten RWS access key. May also be supplied as an HTTP header.