Picker banner API

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

Operations 5

GET /admin/getBanners Returns the banners that match the query #
GET /admin/getDriverBanners Returns the banners that match the query #
GET /client/getMessage Returns a message for a text banner #
PUT /admin/editBanner Creates a banner in the db #
POST /admin/createBanner Creates a banner in the db #

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-banner-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-banner-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Picker Production Documentation accounting Banner API
  version: V1.0.0
  contact:
    name: RV
    email: rachit.verma@nextjuggernaut.com
servers:
- url: http://api.pickerexpress.com/
tags:
- name: banner
paths:
  /admin/getBanners:
    get:
      summary: Returns the banners that match the query
      operationId: getAdminGetbanners
      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: Status of the banners to query
        name: status
        in: query
        required: false
        schema:
          type: string
          enum:
          - ACTIVE
          - INACTIVE
          - ALL
          default: ACTIVE
      - description: Type of the banners to query
        name: type
        in: query
        required: false
        schema:
          type: string
          enum:
          - BUSINESS
          - CATEGORY
      - description: Amount of results to return
        name: limit
        in: query
        required: false
        schema:
          type: number
      - description: Amount of results to skip from the search
        name: skip
        in: query
        required: false
        schema:
          type: number
      - name: latitude
        in: query
        required: false
        schema:
          type: number
      - name: longitude
        in: query
        required: false
        schema:
          type: number
      tags:
      - banner
      responses:
        default:
          description: Successful
          content:
            application/json:
              schema:
                type: string
  /admin/getDriverBanners:
    get:
      summary: Returns the banners that match the query
      operationId: getAdminGetdriverbanners
      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: Status of the banners to query
        name: status
        in: query
        required: false
        schema:
          type: string
          enum:
          - ACTIVE
          - INACTIVE
          - ALL
          default: ACTIVE
      - description: Type of the banners to query
        name: type
        in: query
        required: false
        schema:
          type: string
          enum:
          - BUSINESS
          - CATEGORY
      - description: Amount of results to return
        name: limit
        in: query
        required: false
        schema:
          type: number
      - description: Amount of results to skip from the search
        name: skip
        in: query
        required: false
        schema:
          type: number
      - name: latitude
        in: query
        required: false
        schema:
          type: number
      - name: longitude
        in: query
        required: false
        schema:
          type: number
      tags:
      - banner
      responses:
        default:
          description: Successful
          content:
            application/json:
              schema:
                type: string
  /client/getMessage:
    get:
      summary: Returns a message for a text banner
      operationId: getClientGetmessage
      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
      - name: messageId
        in: query
        required: true
        schema:
          type: string
      tags:
      - banner
      responses:
        default:
          description: Successful
          content:
            application/json:
              schema:
                type: string
  /admin/editBanner:
    put:
      summary: Creates a banner in the db
      operationId: putAdminEditbanner
      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:
      - banner
      responses:
        default:
          description: Successful
          content:
            application/json:
              schema:
                type: string
      requestBody:
        content:
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                bannerID:
                  type: string
                  maxLength: 24
                  minLength: 24
                  description: ID of the banner to edit
                type:
                  type: string
                  enum:
                  - BUSINESS
                  - CATEGORY
                  description: Type of banner to create
                status:
                  type: string
                  enum:
                  - ACTIVE
                  - INACTIVE
                  description: Type of banner to create
                description:
                  type: string
                name:
                  type: string
                  description: Name of the banner
                image:
                  type: object
                  description: Image to show in the banner
  /admin/createBanner:
    post:
      summary: Creates a banner in the db
      operationId: postAdminCreatebanner
      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:
      - banner
      responses:
        default:
          description: Successful
          content:
            application/json:
              schema:
                type: string
      requestBody:
        content:
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                type:
                  type: string
                  enum:
                  - BUSINESS
                  - CATEGORY
                  description: Type of banner to create
                businessID:
                  type: string
                  maxLength: 24
                  minLength: 24
                  description: UserID of the business this banner belongs to
                categoryID:
                  type: string
                  maxLength: 24
                  minLength: 24
                  description: ID of the category this banner belongs to
                description:
                  type: string
                  maxLength: 35
                  description: Description of banner to create
                image:
                  type: object
                  description: Image to show in the banner
              required:
              - type
              - description
              - image