> ## 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.

# Refresh provider verification



## OpenAPI

````yaml /gateway-reference/openapi.yaml post /v1/provider-offers/{id}/verify
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/provider-offers/{id}/verify:
    post:
      tags:
        - Providers
      summary: Refresh provider verification
      operationId: verifyProviderOffer
      parameters:
        - $ref: '#/components/parameters/OfferId'
      responses:
        '200':
          description: Refreshed public offer record.
          content:
            application/json:
              schema:
                type: object
                properties:
                  offer:
                    $ref: '#/components/schemas/Offer'
        '422':
          $ref: '#/components/responses/Error'
      security:
        - TulipApiKey: []
components:
  parameters:
    OfferId:
      name: id
      in: path
      required: true
      schema:
        $ref: '#/components/schemas/Hex32'
  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
    Error:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
            type:
              type: string
            message:
              type: string
          required:
            - code
            - type
            - message
      required:
        - error
  responses:
    Error:
      description: Tulip error response.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    TulipApiKey:
      type: http
      scheme: bearer
      bearerFormat: Tulip API key

````