> ## 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 all bumps

> Retrieve a paginated list of all bumps created in the store. A bump typically represents an add-on or upsell associated with a product. Use query parameters for pagination.

- **Request Headers:**
  - `x-store-id` (string, required): The ID of the store making the request.

- **Query Parameters:**
  - `limit` (integer, optional): Number of bumps per page.
  - `page` (integer, optional): Page number to retrieve.

- **Response:** Returns a list of bumps including details and metadata.

This is useful for managing upsell strategies in an e-commerce setup.



## OpenAPI

````yaml /api-reference/growth-api.json get /bumps
openapi: 3.0.0
info:
  title: Growth API
  description: Comprehensive API documentation for Blink.
  version: 1.0.0
servers:
  - url: https://api.blink.store/v1
security:
  - storeIdHeader: []
paths:
  /bumps:
    get:
      tags:
        - Bumps
      summary: List all bumps
      description: >-
        Retrieve a paginated list of all bumps created in the store. A bump
        typically represents an add-on or upsell associated with a product. Use
        query parameters for pagination.


        - **Request Headers:**
          - `x-store-id` (string, required): The ID of the store making the request.

        - **Query Parameters:**
          - `limit` (integer, optional): Number of bumps per page.
          - `page` (integer, optional): Page number to retrieve.

        - **Response:** Returns a list of bumps including details and metadata.


        This is useful for managing upsell strategies in an e-commerce setup.
      parameters:
        - name: limit
          in: query
          schema:
            type: integer
          description: Number of bumps per page.
        - name: page
          in: query
          schema:
            type: integer
          description: Page number to retrieve.
      responses:
        '200':
          description: Successful response containing list of bumps.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BumpsList'
      security:
        - storeIdHeader: []
components:
  schemas:
    BumpsList:
      type: object
      properties:
        meta:
          type: object
          properties:
            total:
              type: integer
            page:
              type: integer
            limit:
              type: integer
            has_more:
              type: boolean
        data:
          type: array
          items:
            $ref: '#/components/schemas/BumpDetails'
    BumpDetails:
      type: object
      properties:
        id:
          type: string
        store_id:
          type: string
        title:
          type: string
        description:
          type: string
        price:
          type: number
        badge_title:
          type: string
        badge_color:
          type: string
        sales:
          type: integer
        revenue:
          type: number
        created_at:
          type: string
          format: date-time
        deliverables:
          type: array
          items:
            type: object
  securitySchemes:
    storeIdHeader:
      type: apiKey
      in: header
      name: x-store-id

````