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

# Add Tracked Keyword

> Start tracking a new keyword for your team.

Start tracking a new keyword for your team.


## OpenAPI

````yaml POST /v3/rank-tracking/keywords
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/rank-tracking/keywords:
    post:
      tags:
        - Rank Tracking
      summary: Add one or more tracked keywords
      description: Track one keyword or a batch of keywords for rank monitoring.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                teamId:
                  type: string
                  description: Team ID
                keyword:
                  type: string
                  minLength: 1
                  maxLength: 255
                  description: Keyword to track
                countryId:
                  type: string
                  nullable: true
                  description: Country ID (ISO2) or null for worldwide
                languageId:
                  type: string
                  nullable: true
                  description: Language ID or null for default
                locationCriteriaId:
                  type: number
                  nullable: true
                  description: >-
                    Google Ads location criteria ID for city/region-level
                    tracking (from canonicalcities). Omit/null for country-only.
                locationCanonicalName:
                  type: string
                  nullable: true
                  description: >-
                    Canonical location name (e.g. "Austin,Texas,United States").
                    Should be sent whenever locationCriteriaId is set; if
                    omitted the stored canonical name is null.
                items:
                  type: array
                  description: Batch of keywords to track
                  items:
                    type: object
                    required:
                      - keyword
                    properties:
                      keyword:
                        type: string
                        minLength: 1
                        maxLength: 255
                      countryId:
                        type: string
                        nullable: true
                      languageId:
                        type: string
                        nullable: true
                      locationCriteriaId:
                        type: number
                        nullable: true
                      locationCanonicalName:
                        type: string
                        nullable: true
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  requested:
                    type: number
                  alreadyTracked:
                    type: number
                  reactivated:
                    type: number
                  created:
                    type: number
        '400':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  error:
                    type: string
        '402':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  error:
                    type: string
        '500':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  error:
                    type: string

````