Picker review API

The review API from Picker — 3 operation(s) for review.

Operations 3

GET /review/listAverageRating Review and Rating for Driver #
GET /review/listDetailedReview Review and Rating for Driver #
POST /review/giveReviewAndRating Review and Rating for Driver & Business #

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/picker-review-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

picker-review-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Picker Production Documentation accounting Review API
  version: V1.0.0
  contact:
    name: RV
    email: rachit.verma@nextjuggernaut.com
servers:
- url: http://api.pickerexpress.com/
tags:
- name: review
paths:
  /review/listAverageRating:
    get:
      summary: Review and Rating for Driver
      operationId: getReviewListaveragerating
      parameters:
      - description: Bearer Token
        name: authorization
        in: header
        required: true
        schema:
          type: string
      - description: en/ar
        name: content-language
        in: header
        required: true
        schema:
          type: string
      - description: list average reviews of single user only
        name: userID
        in: query
        schema:
          type: string
          maxLength: 24
          minLength: 24
      - description: limit data in response
        name: limit
        in: query
        required: false
        schema:
          type: integer
      - description: limit data from response
        name: skip
        in: query
        required: false
        schema:
          type: integer
      tags:
      - review
      responses:
        default:
          description: Successful
          content:
            application/json:
              schema:
                type: string
  /review/listDetailedReview:
    get:
      summary: Review and Rating for Driver
      operationId: getReviewListdetailedreview
      parameters:
      - description: Bearer Token
        name: authorization
        in: header
        required: true
        schema:
          type: string
      - description: en/ar
        name: content-language
        in: header
        required: true
        schema:
          type: string
      - description: userID of user to list reviews
        name: userID
        in: query
        schema:
          type: string
          maxLength: 24
          minLength: 24
      - description: booking ID to which booking belongs
        name: bookingID
        in: query
        schema:
          type: string
          maxLength: 24
          minLength: 24
      - description: true to list only reviews done by user else all the reviews based on booking or other users
        name: showOnlyMyReviws
        in: query
        required: true
        schema:
          type: boolean
          default: false
      - description: limit data in response
        name: limit
        in: query
        required: false
        schema:
          type: integer
      - description: limit data from response
        name: skip
        in: query
        required: false
        schema:
          type: integer
      tags:
      - review
      responses:
        default:
          description: Successful
          content:
            application/json:
              schema:
                type: string
  /review/giveReviewAndRating:
    post:
      summary: Review and Rating for Driver & Business
      operationId: postReviewGivereviewandrating
      parameters:
      - description: Bearer Token
        name: authorization
        in: header
        required: true
        schema:
          type: string
      - description: en/ar
        name: content-language
        in: header
        required: true
        schema:
          type: string
      tags:
      - review
      responses:
        default:
          description: Successful
          content:
            application/json:
              schema:
                type: string
      requestBody:
        content:
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                bookingID:
                  type: string
                  maxLength: 24
                  minLength: 24
                  description: booking ID to which booking belongs
                userID:
                  type: string
                  maxLength: 24
                  minLength: 24
                  description: ID of driver
                review:
                  type: string
                  description: Review for driver
                rating:
                  type: number
                  maximum: 10
                  minimum: 0
                  description: Rating for driver
                califications:
                  type: array
                  items:
                    type: string
                    enum:
                    - RUDE
                    - LATE
                    - INEFFICIENT
                    - KIND
                    - FAST
                    - EFFICIENT
                driverTip:
                  type: number
                  maximum: 3
                  minimum: 0
                  description: Tip for driver
                businessReview:
                  type: string
                  description: Review for business
                businessRating:
                  type: number
                  maximum: 10
                  minimum: 0
                  description: Rating for business
                businessCalifications:
                  type: array
                  items:
                    type: string
                    enum:
                    - RUDE
                    - LATE
                    - INEFFICIENT
                    - KIND
                    - FAST
                    - EFFICIENT
              required:
              - bookingID
              - rating