---
title: "Look up a tweet"
method: GET
path: "/v1/twitter/tweet"
tags: ["Twitter Engagement"]
---

# Look up a tweet

`GET /v1/twitter/tweet`

Resolve a single tweet by ID or URL into its text, author and public metrics.

Use this to render a post you are referencing, e.g. the tweet quoted by a quote-style post.
Unlike `/v1/twitter/search` this is not limited to the last 7 days and works for any tweet
visible to the connected account.

Billed as an X posts read ($0.005). Repeat lookups of the same tweet within the same UTC day
are charged once.

## Query parameters

- `accountId` string, required
- `id` string, required

## Response `200`

The resolved tweet

- object
  - `status` string
  - `tweet` object
    - `id` string
    - `text` string
    - `created` string, date-time
    - `conversationId` string
    - `inReplyToTweetId` string, nullable — Parent tweet ID when the tweet is itself a reply
    - `lang` string
    - `author` object
      - `id` string
      - `username` string
      - `displayName` string
      - `avatar` string
      - `verifiedType` string
    - `likeCount` integer
    - `replyCount` integer
    - `retweetCount` integer
    - `quoteCount` integer
    - `platform` string

## Other responses

- `400` — Invalid request
- `401` — Unauthorized
- `402` — X API spend cap reached for this billing period
- `403` — X analytics capability not enabled for this account (code X_ANALYTICS_NOT_ENABLED), or the tweet author is protected or suspended
- `404` — Account not found, or the tweet was deleted or never existed
- `429` — X rate limit exceeded

---

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