---
title: "Check Quote or Retweet"
method: POST
path: "/check-quoted"
tags: ["Verification"]
---

# Check Quote or Retweet

`POST /check-quoted`

Checks whether a user has quoted or retweeted a given tweet. Returns a `status` field with one of three values: `quoted`, `retweet`, or `not_found`. If a quote or retweet is found, the response also includes the interaction date and the quote text (when applicable). Identify the user with `username`, `user_link`, or `user_id`.

## Request body

- VerificationCheckQuotedReq
  - `tweet_link` string
  - `user_id` string
  - `user_link` string
  - `username` string

## Response `200`

OK

- VerificationCheckQuotedResp
  - `date` string — Date of the interaction (if found).
  - `status` string — Interaction type: `quoted`, `retweet`, or `not_found`.
  - `text` string — Text of the quote tweet (if status is `quoted`).
  - `user_protected` boolean — `true` if the checked user's account is protected.

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `429` — Too Many Requests
- `500` — Internal Server Error

---

[API](https://skmtc.net/sorsa/apis/api-sorsa-io.md) · [All operations](https://skmtc.net/sorsa/apis/api-sorsa-io/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/sorsa/api-sorsa-io/revisions/7742c72d6966/schema)
