> ## 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 session status

> Get the current status of a payment session for frontend polling



## OpenAPI

````yaml openapi.json get /status/{sessionId}
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:
  /status/{sessionId}:
    get:
      tags:
        - Checkout API
      summary: Get session status
      description: Get the current status of a payment session for frontend polling
      parameters:
        - name: sessionId
          in: path
          required: true
          schema:
            type: string
          description: Payment session ID
      responses:
        '200':
          description: Session status retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SessionStatusResponse'
        '404':
          description: Session not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    SessionStatusResponse:
      type: object
      properties:
        session_id:
          type: string
          description: Session ID
        status:
          type: string
          enum:
            - pending
            - processing
            - completed
            - failed
          description: Session status
        verification_step:
          type: string
          enum:
            - pending
            - confirming
            - completed
            - failed
          description: Verification step
        tx_hash:
          type: string
          description: Transaction hash
        verified_at:
          type: string
          format: date-time
          description: Verification timestamp
        completed_at:
          type: string
          format: date-time
          description: Completion timestamp
      required:
        - session_id
        - status
        - verification_step
    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

````