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

# Get Tracked Accounts

> Retrieve all Twitter accounts that you are currently tracking



## OpenAPI

````yaml GET /api/key/watched
openapi: 3.1.0
info:
  title: uTrack API
  description: API for managing tracked Twitter accounts and retrieving account information
  version: 1.0.0
  contact:
    name: uTrack Support
servers:
  - url: https://www.utrack.club
    description: Production server
security: []
paths:
  /api/key/watched:
    get:
      summary: Get tracked accounts
      description: Retrieve all Twitter accounts that you are currently tracking
      operationId: getTrackedAccounts
      parameters:
        - name: key
          in: query
          required: true
          schema:
            type: string
          description: Your API key
        - name: page
          in: query
          required: false
          schema:
            type: integer
            default: 1
            minimum: 1
          description: Page number for pagination
      responses:
        '200':
          description: Successfully retrieved tracked accounts
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetTrackedAccountsResponse'
              example:
                success: true
                trackedAccounts:
                  - createdAt: '2024-01-15T10:30:00Z'
                    twitterId: '44196397'
                    twitterUsername: elonmusk
        '400':
          description: Bad request - missing or invalid API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                success: false
                error: Missing key (GET)
        '401':
          description: Unauthorized - invalid API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                success: false
                error: invalid api key
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    GetTrackedAccountsResponse:
      type: object
      properties:
        success:
          type: boolean
          example: true
        trackedAccounts:
          type: array
          items:
            $ref: '#/components/schemas/TrackedAccount'
      required:
        - success
        - trackedAccounts
    Error:
      type: object
      properties:
        success:
          type: boolean
          example: false
        error:
          type: string
          description: Error message
        message:
          type: string
          description: Error message (alternative to error field)
      required:
        - success
    TrackedAccount:
      type: object
      properties:
        createdAt:
          type: string
          format: date-time
          description: When the account was added to tracking
        twitterId:
          type: string
          description: Twitter user ID
        twitterUsername:
          type: string
          description: Twitter username (without @)
      required:
        - createdAt
        - twitterId
        - twitterUsername
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: query
      name: key
      description: Your API key. Get your API key from the dashboard.

````