Picker Share My Ride API

The Share My Ride API from Picker — 3 operation(s) for share my ride.

Operations 4

GET /share-my-ride Get booking for share-my-ride #
POST /share-my-ride Get token to share ride #
POST /share-my-ride/login Login share my ride user #
POST /share-my-ride/register Register share my ride user #

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-share-my-ride-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-share-my-ride-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Picker Production Documentation accounting Share My Ride API
  version: V1.0.0
  contact:
    name: RV
    email: rachit.verma@nextjuggernaut.com
servers:
- url: http://api.pickerexpress.com/
tags:
- name: Share My Ride
paths:
  /share-my-ride:
    get:
      summary: Get booking for share-my-ride
      operationId: getSharemyride
      parameters:
      - name: token
        in: query
        required: true
        schema:
          type: string
      responses:
        default:
          description: Successful
          content:
            application/json:
              schema:
                type: string
      tags:
      - Share My Ride
    post:
      summary: Get token to share ride
      operationId: postSharemyride
      responses:
        default:
          description: Successful
          content:
            application/json:
              schema:
                type: string
      tags:
      - Share My Ride
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Model_19'
  /share-my-ride/login:
    post:
      summary: Login share my ride user
      operationId: postSharemyrideLogin
      responses:
        default:
          description: Successful
          content:
            application/json:
              schema:
                type: string
      tags:
      - Share My Ride
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Model_72'
  /share-my-ride/register:
    post:
      summary: Register share my ride user
      operationId: postSharemyrideRegister
      responses:
        default:
          description: Successful
          content:
            application/json:
              schema:
                type: string
      tags:
      - Share My Ride
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Model_73'
components:
  schemas:
    Model_19:
      type: object
      properties:
        bookingID:
          type: string
      required:
      - bookingID
    Model_72:
      type: object
      properties:
        email:
          type: string
          x-format:
            email: true
        password:
          type: string
          description: password must contains minimum 6 character
          minLength: 6
        deviceType:
          type: string
          enum:
          - WEB
          - ANDROID
          - IOS
        role:
          type: string
          description: role of user
          enum:
          - smrUser
      required:
      - email
      - password
      - deviceType
      - role
    Model_73:
      type: object
      properties:
        name:
          type: string
          minLength: 3
          pattern: /^[a-zA-Z ]+$/
          x-convert:
            trim: true
        lastName:
          type: string
          minLength: 3
          pattern: /^[a-zA-Z ]+$/
          x-convert:
            trim: true
        email:
          type: string
          x-format:
            email: true
      required:
      - name
      - lastName
      - email