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

# Current search pricing



## OpenAPI

````yaml /openapi.json get /v1/pricing
openapi: 3.1.0
info:
  title: Lightdrift API
  version: '1.3'
  description: >-
    Natural-language image search for agents. Describe what you want — in text,
    with a reference image, or both — and get ranked images back, each with a
    machine-readable rights answer. Retrieval only: no generation, no checkout.
servers:
  - url: https://api.lightdrift.ai
    description: Production
security:
  - apiKey: []
paths:
  /v1/pricing:
    get:
      summary: Current search pricing
      operationId: public_pricing
      responses:
        '200':
          description: Effective USD rate and standard rerank limit.
          content:
            application/json:
              example:
                currency: USD
                search_price_usd_micros: 5000
                search_price_usd: '0.005'
                per_1000_usd: 5
                standard_rerank_max: 100
                version: '2026-09-22'
      security: []
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: X-API-Key
      description: Your Lightdrift API key. Usage is metered per query.

````