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

# Verificar repostagem

> Verifica se um usuário repostou uma publicação. O endpoint examina até 100 repostagens por requisição. Se houver mais, retorna `next_cursor` para continuar a verificação. Identifique o usuário com `username`, `user_link` ou `user_id`.



## OpenAPI

````yaml openapi-pt-BR.json POST /check-retweet
openapi: 3.0.3
info:
  contact: {}
  title: API Sorsa.io
  version: '3.0'
servers:
  - url: https://api.sorsa.io/v3
security: []
paths:
  /check-retweet:
    post:
      tags:
        - Verificação
      summary: Verificar repostagem
      description: >-
        Verifica se um usuário repostou uma publicação. O endpoint examina até
        100 repostagens por requisição. Se houver mais, retorna `next_cursor`
        para continuar a verificação. Identifique o usuário com `username`,
        `user_link` ou `user_id`.
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/verification.CheckRetweetReq'
        description: >-
          O link da publicação e o nome de usuário são obrigatórios; next_cursor
          é opcional.
        required: true
        x-originalParamName: payload
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/verification.CheckRetweetResp'
          description: OK
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/handler.ErrorResponse'
          description: Requisição inválida
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/handler.ErrorResponse'
          description: Não autorizado
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/handler.ErrorResponse'
          description: Acesso proibido
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/handler.ErrorResponse'
          description: Não encontrado
        '429':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/handler.ErrorResponse'
          description: Excesso de requisições
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/handler.ErrorResponse'
          description: Erro interno do servidor
      security:
        - ApiKeyAuth: []
components:
  schemas:
    verification.CheckRetweetReq:
      properties:
        next_cursor:
          type: string
        tweet_link:
          type: string
        user_id:
          type: string
        user_link:
          type: string
        username:
          type: string
      type: object
    verification.CheckRetweetResp:
      properties:
        next_cursor:
          description: Cursor para verificar mais repostagens, se necessário.
          type: string
        retweet:
          description: '`true` se o usuário repostou a publicação.'
          type: boolean
        user_protected:
          description: '`true` se a conta do usuário verificado for protegida.'
          type: boolean
      type: object
    handler.ErrorResponse:
      properties:
        message:
          type: string
      type: object
  securitySchemes:
    ApiKeyAuth:
      in: header
      name: ApiKey
      type: apiKey

````