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

# Get pricing information

> Get real-time pricing with 1-minute lock for payment verification



## OpenAPI

````yaml openapi.json get /pricing
openapi: 3.0.3
info:
  title: Warp API
  description: >-
    Comprehensive API for Warp platform including organizations, projects, ZK
    proofs, payments, and more
  version: 1.0.0
  contact:
    name: Warp Support
    email: support@usewarp.net
servers:
  - url: https://platform.usewarp.net
    description: Platform API
  - url: https://checkout.usewarp.net
    description: Checkout API
security:
  - bearerAuth: []
paths:
  /pricing:
    get:
      tags:
        - Checkout API
      summary: Get pricing information
      description: Get real-time pricing with 1-minute lock for payment verification
      parameters:
        - name: session_id
          in: query
          required: true
          schema:
            type: string
          description: Payment session ID
        - name: token
          in: query
          required: true
          schema:
            type: string
          description: Token symbol (e.g., ETH, USDC)
        - name: chain
          in: query
          required: true
          schema:
            type: string
          description: Blockchain chain (e.g., ethereum, polygon)
        - name: network
          in: query
          required: false
          schema:
            type: string
            enum:
              - mainnet
              - testnet
            default: testnet
          description: Network type
      responses:
        '200':
          description: Pricing information retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PricingResponse'
        '400':
          description: Missing or invalid parameters
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    PricingResponse:
      type: object
      properties:
        success:
          type: boolean
          description: Success flag
        pricing:
          type: object
          description: Pricing lock data
      required:
        - success
        - pricing
    Error:
      type: object
      properties:
        error:
          type: string
          description: Error message
        details:
          type: array
          items:
            type: object
          description: Detailed validation errors
      required:
        - error
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: JWT Bearer token authentication

````