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

# Match a website to intent topics

> Scrapes a website, extracts keywords, and matches them against 20K+ pre-embedded B2B/B2C topics. Unauthenticated: 2 req/min. Authenticated: 30 req/min.



## OpenAPI

````yaml https://api.aws53.cloud/openapi-intent.json post /v1/intent/topics/analyze
openapi: 3.1.0
info:
  title: Orbit API
  version: 1.0.0
  description: >-
    Orbit Audience Intent API: topic discovery, site analysis, curated ICP
    filters, saved audiences, materialization runs, stats, and CSV export.
    Discovery endpoints are public; audience management accepts either Bearer
    JWT or X-API-Key auth.
servers:
  - url: https://api.aws53.cloud
    description: Production
security: []
tags:
  - name: Topic Discovery
    description: Browse, search, and analyze available intent topics
  - name: Site Analysis
    description: Analyze a website URL to find matching intent topics
  - name: Site Topics
    description: Recent organization site-topic analyses
  - name: Audience Builder
    description: >-
      Curated filters, preview, saved audiences, runs, stats, CSV export, and
      saved topic lists
paths:
  /v1/intent/topics/analyze:
    post:
      tags:
        - Site Analysis
      summary: Match a website to intent topics
      description: >-
        Scrapes a website, extracts keywords, and matches them against 20K+
        pre-embedded B2B/B2C topics. Unauthenticated: 2 req/min. Authenticated:
        30 req/min.
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                url:
                  type: string
                  minLength: 10
                  format: uri
                  example: https://snowflake.com
              required:
                - url
      responses:
        '200':
          description: Matched topics
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SiteTopicsResponse'
        '400':
          description: Invalid URL
        '429':
          description: Rate limit exceeded
        '500':
          description: Processing error
components:
  schemas:
    SiteTopicsResponse:
      type: object
      properties:
        data:
          type: object
          properties:
            company:
              type:
                - string
                - 'null'
            summary:
              type:
                - string
                - 'null'
            keywords:
              type: array
              items:
                type: string
            topics:
              type: array
              items:
                type: object
                properties:
                  topicId:
                    type: number
                  topicName:
                    type: string
                  type:
                    type: string
                  industry:
                    type: string
                  category:
                    type: string
                  similarity:
                    type: number
                  matchedKeyword:
                    type: string
                required:
                  - topicId
                  - topicName
                  - type
                  - industry
                  - category
                  - similarity
                  - matchedKeyword
          required:
            - company
            - summary
            - keywords
            - topics
      required:
        - data

````