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

# Find relevant pages on a domain

> **Requires `x-api-key` header.**

Rate limit: 5 requests/second per API key.

Finds the most relevant public pages on a domain for a set of keywords. Use it before scraping, extraction, or page analysis when you need the right source URLs first.

**Price:** $0.005 when pages are found, free when nothing is found.



## OpenAPI

````yaml /openapi.json post /page-find
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:
  /page-find:
    post:
      tags:
        - Web
      summary: Find relevant pages on a domain
      description: >-
        **Requires `x-api-key` header.**


        Rate limit: 5 requests/second per API key.


        Finds the most relevant public pages on a domain for a set of keywords.
        Use it before scraping, extraction, or page analysis when you need the
        right source URLs first.


        **Price:** $0.005 when pages are found, free when nothing is found.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - domain
                - keywords
              properties:
                domain:
                  type: string
                  description: Public domain or URL to search, e.g. `stripe.com`.
                keywords:
                  type: array
                  minItems: 1
                  maxItems: 10
                  items:
                    type: string
                    maxLength: 80
                  description: >-
                    Keywords or phrases to match, e.g. `["pricing", "api",
                    "docs"]`.
            example:
              domain: stripe.com
              keywords:
                - pricing
                - api
                - docs
      responses:
        '200':
          description: Page discovery complete.
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  request_id:
                    type: string
                  domain:
                    type: string
                    description: Normalized domain that was searched.
                  keywords:
                    type: array
                    items:
                      type: string
                  pages:
                    type: array
                    items:
                      type: object
                      properties:
                        url:
                          type: string
                          description: Matched public page URL.
                        score:
                          type: number
                          minimum: 0
                          maximum: 1
                          description: Relevance score from 0 to 1.
                        matched_keywords:
                          type: array
                          items:
                            type: string
                          description: Keywords that matched this URL.
                        match_reasons:
                          type: array
                          items:
                            type: string
                          description: Why this URL matched.
                  total_sitemap_urls:
                    type: integer
                    description: Number of URLs evaluated within endpoint limits.
                  matched:
                    type: integer
                    description: Number of pages returned.
                  price:
                    type: number
                    description: $0.005 when pages found, $0.00 when nothing found.
                  credits_remaining:
                    type: number
              examples:
                found:
                  summary: Pages found
                  value:
                    success: true
                    request_id: req_1746123456_fp1x2y
                    domain: stripe.com
                    keywords:
                      - pricing
                      - api
                      - docs
                    pages:
                      - url: https://stripe.com/pricing
                        score: 0.95
                        matched_keywords:
                          - pricing
                        match_reasons:
                          - exact_path_segment
                          - short_path
                      - url: https://stripe.com/docs/api
                        score: 1
                        matched_keywords:
                          - api
                          - docs
                        match_reasons:
                          - exact_path_segment
                    total_sitemap_urls: 500
                    matched: 2
                    price: 0.005
                    credits_remaining: 4.995
                not_found:
                  summary: No matching pages
                  value:
                    success: true
                    request_id: req_1746123456_fp3x4y
                    domain: example.com
                    keywords:
                      - pricing
                    pages: []
                    total_sitemap_urls: 42
                    matched: 0
                    price: 0
                    credits_remaining: 5
        '400':
          description: Missing or invalid domain or keywords.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Invalid API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '402':
          description: Insufficient credits.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Page discovery failed. Credits are refunded automatically.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    Error:
      type: object
      properties:
        error:
          type: string
          description: Human-readable error message.
      required:
        - error
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: >-
        Your Huntr API key. Get one at tryhuntr.com. Pass as x-api-key header on
        all authenticated requests.

````