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

# Get Page

> Detail of one indexed page: URL, title, language, category, last crawled at, errors.



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/public/indexation/pages/{page_id}
openapi: 3.1.0
info:
  title: Hikoo REST API
  description: >-
    Programmatic access to your Hikoo data: citations, prompts, competitors,
    audits, health and more. Authenticate with a personal API key
    (`Authorization: Bearer <key>`) created from the dashboard settings.
  version: 1.0.0
servers:
  - url: https://api.tryhikoo.com
security:
  - apiKey: []
paths:
  /api/v1/public/indexation/pages/{page_id}:
    get:
      tags:
        - Indexation
      summary: Get Page
      description: >-
        Detail of one indexed page: URL, title, language, category, last crawled
        at, errors.
      operationId: get_page_api_v1_public_indexation_pages__page_id__get
      parameters:
        - name: page_id
          in: path
          required: true
          schema:
            type: integer
            title: Page Id
        - name: website_id
          in: query
          required: true
          schema:
            type: integer
            description: Target website id
            title: Website Id
          description: Target website id
        - name: authorization
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Bearer <api_key>
            title: Authorization
          description: Bearer <api_key>
        - name: X-MCP-Secret
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: X-Mcp-Secret
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WebsitePageSchema'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    WebsitePageSchema:
      properties:
        id:
          type: integer
          title: Id
        website_id:
          type: integer
          title: Website Id
        url:
          type: string
          title: Url
        title:
          anyOf:
            - type: string
            - type: 'null'
          title: Title
        meta_description:
          anyOf:
            - type: string
            - type: 'null'
          title: Meta Description
        language:
          anyOf:
            - type: string
            - type: 'null'
          title: Language
        category:
          $ref: '#/components/schemas/WebsiteAuditPageCategory'
        category_source:
          $ref: '#/components/schemas/PageCategorySource'
        health_check_passed:
          type: boolean
          title: Health Check Passed
        is_active:
          type: boolean
          title: Is Active
        is_indexable:
          type: boolean
          title: Is Indexable
        http_status_code:
          anyOf:
            - type: integer
            - type: 'null'
          title: Http Status Code
        last_crawled_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Last Crawled At
        last_changed_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Last Changed At
        last_health_check_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Last Health Check At
        created_at:
          type: string
          format: date-time
          title: Created At
        health_errors:
          items:
            $ref: '#/components/schemas/HealthErrorSchema'
          type: array
          title: Health Errors
          default: []
      type: object
      required:
        - id
        - website_id
        - url
        - category
        - category_source
        - health_check_passed
        - is_active
        - is_indexable
        - created_at
      title: WebsitePageSchema
      description: Full schema for a website page.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    WebsiteAuditPageCategory:
      type: string
      enum:
        - global
        - home_page
        - blog_post
        - blog_list_page
        - service_page
        - product_page
        - pricing_page
        - landing_page
        - docs_page
        - knowledge_base_article
        - faq_page
        - about_page
        - contact_page
        - checkout_page
        - other
        - default
        - unreachable
        - case_study
        - guide
        - product_list_page
        - cart_page
        - legal_page
        - auth_page
        - category_page
        - search_page
        - utility_page
        - glossary_page
        - comparison_page
        - use_case_page
        - ecommerce_product_page
      title: WebsiteAuditPageCategory
    PageCategorySource:
      type: string
      enum:
        - auto_heuristic
        - auto_llm
        - manual
      title: PageCategorySource
      description: Source of the page category classification
    HealthErrorSchema:
      properties:
        id:
          type: integer
          title: Id
        error_type:
          $ref: '#/components/schemas/HealthCheckErrorType'
        severity:
          $ref: '#/components/schemas/HealthCheckErrorSeverity'
        message:
          type: string
          title: Message
        details:
          anyOf:
            - type: string
            - type: 'null'
          title: Details
      type: object
      required:
        - id
        - error_type
        - severity
        - message
      title: HealthErrorSchema
      description: Schema for a health check error.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
    HealthCheckErrorType:
      type: string
      enum:
        - robots_txt_missing
        - robots_txt_blocks_ai
        - llms_txt_missing
        - sitemap_missing
        - noindex_tag
        - meta_description_missing
        - meta_description_too_short
        - meta_description_too_long
        - title_missing
        - title_too_short
        - title_too_long
        - schema_missing
        - schema_invalid
        - schema_article_missing
        - schema_faq_missing
        - h1_missing
        - h1_multiple
        - heading_hierarchy_broken
        - canonical_missing
        - canonical_mismatch
        - open_graph_missing
        - http_error
        - slow_load_time
        - images_missing_alt
        - content_too_short
        - no_internal_links
        - date_outdated
      title: HealthCheckErrorType
      description: Types of health check errors that can be detected on a page
    HealthCheckErrorSeverity:
      type: string
      enum:
        - error
        - warning
      title: HealthCheckErrorSeverity
      description: Severity level of a health check error
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      description: Personal API key created in the dashboard (Settings > API keys).

````