Picker location API

The location API from Picker — 5 operation(s) for location.

Operations 5

GET /customer/list/service/location Get List Of all service loation #
PUT /update/customer/service/location Customer can update his favourite service location #
POST /customer/addQueryToAdmin Add query to admin #
POST /customer/service/location Customer can add his favourite service location #
DELETE /customer/remove/service/location delete service location of customer #

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-location-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-location-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Picker Production Documentation accounting Location API
  version: V1.0.0
  contact:
    name: RV
    email: rachit.verma@nextjuggernaut.com
servers:
- url: http://api.pickerexpress.com/
tags:
- name: location
paths:
  /customer/list/service/location:
    get:
      summary: Get List Of all service loation
      operationId: getCustomerListServiceLocation
      parameters:
      - name: limit
        in: query
        required: false
        schema:
          type: number
      - name: skip
        in: query
        required: false
        schema:
          type: number
      - description: 'DELIVERY PICKUP '
        name: addressType
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
            enum:
            - DELIVERY
            - PICKUP
      - description: ' HOME OFFICE'
        name: type
        in: query
        required: false
        schema:
          type: string
          enum:
          - HOME
          - OFFICE
      tags:
      - location
      responses:
        default:
          description: Successful
          content:
            application/json:
              schema:
                type: string
  /update/customer/service/location:
    put:
      summary: Customer can update his favourite service location
      operationId: putUpdateCustomerServiceLocation
      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:
      - location
      responses:
        default:
          description: Successful
          content:
            application/json:
              schema:
                type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Model_46'
  /customer/addQueryToAdmin:
    post:
      summary: Add query to admin
      operationId: postCustomerAddquerytoadmin
      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:
      - location
      responses:
        default:
          description: Successful
          content:
            application/json:
              schema:
                type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Model_71'
  /customer/service/location:
    post:
      summary: Customer can add his favourite service location
      operationId: postCustomerServiceLocation
      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:
      - location
      responses:
        default:
          description: Successful
          content:
            application/json:
              schema:
                type: string
      requestBody:
        content:
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                placeID:
                  type: string
                title:
                  type: string
                fullAddress:
                  type: string
                companyName:
                  type: string
                  minLength: 2
                  pattern: /^[a-zA-Z ]+$/
                companyAddress:
                  type: string
                  minLength: 2
                city:
                  type: string
                  minLength: 2
                state:
                  type: string
                  minLength: 2
                zipCode:
                  type: string
                  minLength: 2
                addressType:
                  type: string
                  enum:
                  - DELIVERY
                  - PICKUP
                  description: ' DELIVERY PICKUP '
                type:
                  type: string
                  enum:
                  - HOME
                  - OFFICE
                  - OTHERS
                  description: ' HOME OFFICE OTHERS'
                latitude:
                  type: number
                longitude:
                  type: number
              required:
              - addressType
  /customer/remove/service/location:
    delete:
      summary: delete service  location of customer
      operationId: deleteCustomerRemoveServiceLocation
      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
      - x-constraint:
          single: true
        name: locationId
        in: query
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
            minLength: 24
            maxLength: 24
      tags:
      - location
      responses:
        default:
          description: Successful
          content:
            application/json:
              schema:
                type: string
components:
  schemas:
    Model_71:
      type: object
      properties:
        bookingID:
          type: string
          minLength: 24
          maxLength: 24
        query:
          type: string
        role:
          type: string
          description: role of user
          enum:
          - customer
          - driver
      required:
      - role
    Model_46:
      type: object
      properties:
        locationId:
          type: string
          description: required if location id update
          minLength: 24
          maxLength: 24
        companyName:
          type: string
          minLength: 2
          pattern: /^[a-zA-Z ]+$/
          x-convert:
            trim: true
        companyAddress:
          type: string
          minLength: 2
          x-convert:
            trim: true
        city:
          type: string
          minLength: 2
          x-convert:
            trim: true
        state:
          type: string
          minLength: 2
          x-convert:
            trim: true
        zipCode:
          type: string
          minLength: 2
          x-convert:
            trim: true
        addressType:
          type: string
          description: '  DELIVERY PICKUP'
          enum:
          - DELIVERY
          - PICKUP
        type:
          type: string
          description: ' HOME OFFICE'
          enum:
          - HOME
          - OFFICE
        latitude:
          type: number
        longitude:
          type: number
      required:
      - addressType
      - latitude
      - longitude