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

# Full pricing matrix

> **No auth required.**

Returns current tier prices, per-model prices, and standalone endpoint prices.



## OpenAPI

````yaml /openapi.json get /pricing
openapi: 3.0.3
info:
  title: Huntr — The GTM Intelligence API
  description: >-
    Give AI agents company, people, contact, and web intelligence through one
    API. Search accounts, build targeted lists, enrich leads, find contacts, and
    uncover buying signals.


    **Authentication:** Authenticated endpoints require an `x-api-key` header
    with your Huntr API key. Get a key by signing up via `POST /keys/create`.
    Public endpoints (pricing, sign-up, health) work without a key.


    **Rate limit:** 5 requests/second per API key on authenticated endpoints.
  version: 2.0.0
servers:
  - url: https://api.tryhuntr.com
security: []
tags:
  - name: Research
    description: >-
      Research one company, person, team, or focused business question and
      return a sales-ready answer. Lite, standard, and deep tiers.
  - name: Companies
    description: >-
      Search companies and enrich firmographics. Per-result pricing on search;
      count endpoints are free.
  - name: People
    description: >-
      Search people and enrich contacts — work email, phone, and related lookup
      endpoints.
  - name: LinkedIn
    description: >-
      LinkedIn URL discovery, company and profile pages, posts, reactions, and
      comments.
  - name: X
    description: X profiles, posts, search results, and thread context.
  - name: Web
    description: >-
      Find and analyze pages on a domain, plus tech stack, domain contacts, and
      job postings.
  - name: Account
    description: >-
      Sign up, verify email, recover keys, check balance, view usage, add
      credits, and read the public pricing matrix.
  - name: System
    description: Health check.
paths:
  /pricing:
    get:
      tags:
        - Account
      summary: Full pricing matrix
      description: >-
        **No auth required.**


        Returns current tier prices, per-model prices, and standalone endpoint
        prices.
      responses:
        '200':
          description: Full pricing matrix.
          content:
            application/json:
              schema:
                type: object
                properties:
                  tiers:
                    type: object
                    description: Per-tier info using the default synthesis model.
                    properties:
                      lite:
                        type: object
                        properties:
                          default_model:
                            type: string
                            description: Default synthesis model for this tier.
                          default_price:
                            type: number
                            description: >-
                              Complete price per successful request with the
                              default model.
                          capabilities:
                            type: integer
                            description: >-
                              Number of agent capabilities available at this
                              tier.
                      standard:
                        type: object
                        properties:
                          default_model:
                            type: string
                          default_price:
                            type: number
                          capabilities:
                            type: integer
                      deep:
                        type: object
                        properties:
                          default_model:
                            type: string
                          default_price:
                            type: number
                          capabilities:
                            type: integer
                  models:
                    type: object
                    description: >-
                      Price per model per tier. Keys are model IDs (e.g.
                      'gpt-5', 'claude-opus-4.7'). Use these to pick a model
                      override and know exactly what you'll pay.
                    additionalProperties:
                      type: object
                      properties:
                        lite:
                          type: number
                          description: Price at lite tier with this model.
                        standard:
                          type: number
                          description: Price at standard tier with this model.
                        deep:
                          type: number
                          description: Price at deep tier with this model.
                  endpoints:
                    type: object
                    description: Standalone endpoint prices and descriptions.
                    additionalProperties:
                      type: object
                      properties:
                        price:
                          type: number
                        price_per_result:
                          type: number
                        description:
                          type: string
              example:
                tiers:
                  lite:
                    default_model: gemini-2.5-flash
                    default_price: 0.018
                  standard:
                    default_model: gemini-2.5-flash
                    default_price: 0.027
                  deep:
                    default_model: gemini-2.5-flash
                    default_price: 0.046
                endpoints:
                  tech_stack:
                    price: 0.012
                    description: POST /company-tech-stack
                  linkedin_company:
                    price: 0.002
                    description: POST /company-linkedin
                  company_search:
                    price_per_result: 0.0003
                    description: POST /company-search
                models:
                  gpt-4o-mini:
                    lite: 0.015
                    standard: 0.022
                    deep: 0.039
                  gemini-2.5-flash:
                    lite: 0.018
                    standard: 0.027
                    deep: 0.046
      security: []

````