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

# Article Audit

> Get the latest cached SEO audit for one of your articles.

Fetch the most recent audit for an article — the same scores shown in the dashboard's article audit: SEO, content quality, AI-search readiness, keyword coverage, internal linking, and an overall score.

<Note>
  This returns the **latest cached** audit. Audits run in the background, so if an article hasn't been audited yet there's nothing to return. Use the [Articles](/docs/api-reference/endpoints/articles) list to find article slugs.
</Note>

***

## Audit History

`GET /cms/audit/articles/{slug}/history`

Get the paginated history of past audits for an article so you can track how its scores change over time.


## OpenAPI

````yaml GET /v3/cms/audit/articles/{slug}
openapi: 3.0.0
info:
  title: SnowSEO API
  description: API documentation for SnowSEO
  version: 1.0.0
servers:
  - url: https://api.snowseo.com
    description: Production server
security: []
tags:
  - name: Keywords
    description: Keyword research and suggestion end-points
  - name: Onboarding
    description: Brand onboarding and strategy end-points
  - name: Brands
    description: Brand management end-points
  - name: Organizations
    description: Organization and member end-points
  - name: Integrations
    description: Google Search Console and other integrations
  - name: Utilities
    description: Common utility end-points like screenshots and uploads
externalDocs:
  url: https://snowseo.com/docs
  description: Find more info here
paths:
  /v3/cms/audit/articles/{slug}:
    get:
      tags:
        - CMS
      summary: Get latest article audit
      description: Returns the latest cached audit for an article.
      operationId: getArticleAudit
      parameters:
        - schema:
            type: string
          in: query
          name: teamId
          required: false
        - schema:
            type: string
          in: path
          name: slug
          required: true
      responses:
        '200':
          description: Default Response

````