> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blink.store/llms.txt
> Use this file to discover all available pages before exploring further.

# List store bumps

> Retrieves a list of promotional bumps available in the store. A bump is a special offer or upsell related to a product. The response includes details like the title, description, price, and deliverables.

**Usage:** Utilize this endpoint to analyze or display product upsells and promotions for increasing average order value.



## OpenAPI

````yaml get /bumps
openapi: 3.0.0
info:
  title: Blink API
  description: Comprehensive API documentation for Blink.
  version: 1.0.0
servers:
  - url: https://api.blink.store/v1
security: []
paths:
  /bumps:
    get:
      tags:
        - Bumps
      summary: List store bumps
      description: >-
        Retrieves a list of promotional bumps available in the store. A bump is
        a special offer or upsell related to a product. The response includes
        details like the title, description, price, and deliverables.


        **Usage:** Utilize this endpoint to analyze or display product upsells
        and promotions for increasing average order value.
      parameters:
        - name: limit
          in: query
          schema:
            type: integer
            default: 10
        - name: page
          in: query
          schema:
            type: integer
            default: 1
      responses:
        '200':
          description: Bumps retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BumpsListResponse'
        '401':
          description: Unauthorized
components:
  schemas:
    BumpsListResponse:
      type: object
      properties:
        meta:
          type: object
          properties:
            total:
              type: integer
            page:
              type: integer
            limit:
              type: integer
            has_more:
              type: boolean
        data:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
              store_id:
                type: string
              title:
                type: string
              description:
                type: string
              price:
                type: integer
              badge_title:
                type: string
              badge_color:
                type: string
              sales:
                type: integer
              revenue:
                type: integer
              created_at:
                type: string
                format: date-time
              deliverables:
                type: array
                items:
                  type: object
                  properties:
                    id:
                      type: string
                    type:
                      type: string
                    title:
                      type: string
                    description:
                      type: string
                    url:
                      type: string
                    button_label:
                      type: string

````