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

# List provider offers for a model



## OpenAPI

````yaml /gateway-reference/openapi.yaml get /v1/models/{id}/offers
openapi: 3.1.0
info:
  title: Tulip Gateway API
  version: 2.0.0
  description: >-
    Offer-aware model discovery, quotes, OpenAI-compatible inference, provider
    onboarding, and settlement for Tulip v1 model markets.
servers: []
security: []
tags:
  - name: Service
  - name: Models
  - name: Inference
  - name: Providers
  - name: Settlement
paths:
  /v1/models/{id}/offers:
    get:
      tags:
        - Models
      summary: List provider offers for a model
      operationId: listModelOffers
      parameters:
        - $ref: '#/components/parameters/ModelId'
      responses:
        '200':
          description: Provider offer list.
          content:
            application/json:
              schema:
                type: object
                properties:
                  object:
                    type: string
                    const: list
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Offer'
      security:
        - TulipApiKey: []
components:
  parameters:
    ModelId:
      name: id
      in: path
      required: true
      description: Public model ID, ModelID, or configured catalog identifier.
      schema:
        type: string
  schemas:
    Offer:
      type: object
      properties:
        offer_id:
          $ref: '#/components/schemas/Hex32'
        model_id:
          $ref: '#/components/schemas/Hex32'
        operator:
          $ref: '#/components/schemas/Address'
        payout:
          $ref: '#/components/schemas/Address'
        status:
          $ref: '#/components/schemas/OfferStatus'
        tariff_version:
          type: string
        capabilities:
          type: object
          additionalProperties: true
        region:
          type: string
        hardware:
          type: string
        max_concurrency:
          type: integer
        verified_at:
          type: integer
        verification_expires_at:
          type: integer
      required:
        - offer_id
        - model_id
        - operator
        - payout
        - status
        - tariff_version
        - capabilities
        - verified_at
        - verification_expires_at
    Hex32:
      type: string
      pattern: ^0x[0-9a-fA-F]{64}$
    Address:
      type: string
      pattern: ^0x[0-9a-fA-F]{40}$
    OfferStatus:
      type: string
      enum:
        - active
        - paused
        - retired
        - quarantined
  securitySchemes:
    TulipApiKey:
      type: http
      scheme: bearer
      bearerFormat: Tulip API key

````