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

# Recent site topic searches for the organization

> Returns the last 20 site topic searches made by any member of the organization.



## OpenAPI

````yaml https://api.aws53.cloud/openapi-intent.json get /v1/site-topics/recent
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/site-topics/recent:
    get:
      tags:
        - Site Topics
      summary: Recent site topic searches for the organization
      description: >-
        Returns the last 20 site topic searches made by any member of the
        organization.
      responses:
        '200':
          description: Recent searches
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RecentSearchesResponse'
      security:
        - bearerAuth: []
components:
  schemas:
    RecentSearchesResponse:
      type: object
      properties:
        data:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
                format: uuid
              url:
                type: string
              company:
                type:
                  - string
                  - 'null'
              summary:
                type:
                  - string
                  - 'null'
              topicCount:
                type: number
              keywords:
                type:
                  - array
                  - 'null'
                items:
                  type: string
              topTopics:
                type:
                  - array
                  - 'null'
                items:
                  type: object
                  properties:
                    topicId:
                      type: number
                    topicName:
                      type: string
                    type:
                      type: string
                    industry:
                      type: string
                    similarity:
                      type: number
                  required:
                    - topicId
                    - topicName
                    - type
                    - industry
                    - similarity
              createdAt:
                type: string
            required:
              - id
              - url
              - company
              - summary
              - topicCount
              - keywords
              - topTopics
              - createdAt
      required:
        - data
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: 'Dashboard access token. Send as Authorization: Bearer <token>.'

````