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

# Internal Links

> List every stored internal link across your team's articles.

Get all internal links stored for your team — each with its source article, target URL, and status. Useful for auditing your internal linking structure across the whole site.

<Tip>
  For the internal links inside a single article, use `GET /cms/articles/{slug}/internal-links` — see [Get Article](/docs/api-reference/endpoints/get-article).
</Tip>


## OpenAPI

````yaml GET /v3/cms/team/internal-links
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/team/internal-links:
    get:
      tags:
        - CMS
      summary: Get all internal links for a team
      operationId: getTeamInternalLinks
      parameters:
        - schema:
            type: string
          in: query
          name: teamId
          required: false
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  internalLinks:
                    type: array
                    items:
                      type: object
                      properties:
                        sourceSlug:
                          type: string
                        targetSlug:
                          type: string
                          nullable: true
                        targetUrl:
                          type: string
                          nullable: true
                        status:
                          type: string
        '404':
          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

````