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

# Analytics d'un tweet (likes, RT, réponses, impressions)



## OpenAPI

````yaml /api-reference/openapi.json get /v1/accounts/{id}/x-tweets/{tweetId}
openapi: 3.0.0
info:
  title: PlugKit API
  description: >-
    One API to publish, read, and reply across Instagram, WhatsApp, TikTok,
    YouTube, X & Telegram — built for AI agents. Authenticate every request with
    a Bearer API key (sk_…).
  version: 0.1.0
  contact: {}
servers:
  - url: https://api.plugkit.co
    description: Production
security:
  - api-key: []
tags: []
paths:
  /v1/accounts/{id}/x-tweets/{tweetId}:
    get:
      tags:
        - accounts
      summary: Analytics d'un tweet (likes, RT, réponses, impressions)
      operationId: AccountsController_getXTweetAnalytics
      parameters:
        - name: id
          required: true
          in: path
          schema:
            type: string
        - name: tweetId
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: ''
      security:
        - api-key: []
components:
  securitySchemes:
    api-key:
      type: http
      scheme: bearer
      bearerFormat: sk_...

````