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

# Activity Feed

> Get a timeline of recent events for your team — audits, articles, and changes.

Get a timeline of recent activity for your team. This is the same feed that powers the dashboard overview — showing when audits were completed, articles were published, and other key events.

### Event Types

| Type                  | Meaning                                      |
| --------------------- | -------------------------------------------- |
| `article-published`   | An article was published to your CMS         |
| `article-updated`     | An existing article was updated              |
| `keyword-tracked`     | A keyword was added to rank tracking         |
| `prompt-tracked`      | A prompt was added to AI Visibility tracking |
| `audit-completed`     | A website audit finished running             |
| `onboarding-step`     | An onboarding step was completed             |
| `onboarding-complete` | Onboarding was fully completed               |


## OpenAPI

````yaml GET /v3/activity-feed/
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/activity-feed/:
    get:
      tags:
        - Activity Feed
      summary: Get activity feed
      description: Returns the activity feed for a team.
      operationId: getActivityFeed
      parameters:
        - schema:
            type: string
          in: query
          name: teamId
          required: false
          description: Team ID
        - schema:
            type: integer
            minimum: 1
            maximum: 50
          in: query
          name: limit
          required: false
          description: Max number of items (default 15, max 50)
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                required:
                  - items
                properties:
                  items:
                    type: array
                    items:
                      type: object
                      required:
                        - id
                        - type
                        - title
                        - description
                        - timestamp
                      properties:
                        id:
                          type: string
                        type:
                          type: string
                          enum:
                            - article-published
                            - article-updated
                            - keyword-tracked
                            - prompt-tracked
                            - audit-completed
                            - onboarding-step
                            - onboarding-complete
                        title:
                          type: string
                        description:
                          type: string
                        timestamp:
                          type: string
                        metadata:
                          type: object
                          additionalProperties: true
        '400':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
        '500':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string

````