> ## 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 Audit Page

> Detail of a single audit page, including every criterion (validated or not)
and the recommendations attached to each.



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/public/audits/{audit_id}/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/audits/{audit_id}/pages/{page_id}:
    get:
      tags:
        - Audits
      summary: Get Audit Page
      description: >-
        Detail of a single audit page, including every criterion (validated or
        not)

        and the recommendations attached to each.
      operationId: get_audit_page_api_v1_public_audits__audit_id__pages__page_id__get
      parameters:
        - name: audit_id
          in: path
          required: true
          schema:
            type: integer
            title: Audit Id
        - 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/WebsiteAuditPageWithCriteriasSchema'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    WebsiteAuditPageWithCriteriasSchema:
      properties:
        id:
          type: integer
          title: Id
        page_url:
          type: string
          title: Page Url
        page_category:
          $ref: '#/components/schemas/WebsiteAuditPageCategory'
        overall_score:
          type: number
          title: Overall Score
        max_possible_score:
          type: number
          title: Max Possible Score
        error_text:
          anyOf:
            - type: string
            - type: 'null'
          title: Error Text
        criterias:
          items:
            $ref: '#/components/schemas/WebsiteAuditCriteriaItemSchema'
          type: array
          title: Criterias
      type: object
      required:
        - id
        - page_url
        - page_category
        - overall_score
        - max_possible_score
        - error_text
        - criterias
      title: WebsiteAuditPageWithCriteriasSchema
    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
    WebsiteAuditCriteriaItemSchema:
      properties:
        id:
          type: integer
          title: Id
        name:
          type: string
          title: Name
        weight:
          type: number
          title: Weight
        validated:
          type: boolean
          title: Validated
        website_audit_recommendations:
          items:
            $ref: '#/components/schemas/WebsiteAuditRecommendationSchema'
          type: array
          title: Website Audit Recommendations
          default: []
      type: object
      required:
        - id
        - name
        - weight
        - validated
      title: WebsiteAuditCriteriaItemSchema
    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
    WebsiteAuditRecommendationSchema:
      properties:
        id:
          type: integer
          title: Id
        website_audit_criteria_id:
          type: integer
          title: Website Audit Criteria Id
        description:
          type: string
          title: Description
      type: object
      required:
        - id
        - website_audit_criteria_id
        - description
      title: WebsiteAuditRecommendationSchema
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      description: Personal API key created in the dashboard (Settings > API keys).

````