> **For coding agents and LLMs:** This is one page from the Social Fetch docs (markdown export). For curated orientation and workflow guidance, start with [`/llms.txt`](https://www.socialfetch.dev/llms.txt); for agent onboarding and crawl rules, use [`/agents.txt`](https://www.socialfetch.dev/agents.txt); for the full endpoint list with links to pages like this one, use [`/llms-endpoints.txt`](https://www.socialfetch.dev/llms-endpoints.txt); for one platform's parameters and curls, use [`/llms-{platform}.txt`](https://www.socialfetch.dev/llms-tiktok.txt); use [`/llms.json`](https://www.socialfetch.dev/llms.json) when you need structured JSON for tool registration.

## This page

- **On-site (HTML):** [https://www.socialfetch.dev/docs/api/v1/twitter/tweets/quotes/get](https://www.socialfetch.dev/docs/api/v1/twitter/tweets/quotes/get)
- **Markdown (.mdx) URL:** [https://www.socialfetch.dev/docs/api/v1/twitter/tweets/quotes/get.mdx](https://www.socialfetch.dev/docs/api/v1/twitter/tweets/quotes/get.mdx)

## API base URL and authentication

- **API origin (from OpenAPI `servers`):** `https://api.socialfetch.dev`
- **Authentication:** send `x-api-key: sfk_...` on `/v1/**` routes unless the operation is explicitly anonymous (check OpenAPI `security`, the [API reference hub](https://www.socialfetch.dev/docs/api.mdx), [`/llms.txt`](https://www.socialfetch.dev/llms.txt), or [`/llms.json`](https://www.socialfetch.dev/llms.json) for each route).
- **OpenAPI JSON:** [https://www.socialfetch.dev/openapi.json](https://www.socialfetch.dev/openapi.json)

## Recommended docs entrypoints (this site)

- [Documentation overview](https://www.socialfetch.dev/docs.mdx) — top-level orientation (markdown).
- [Quickstart](https://www.socialfetch.dev/docs/quickstart.mdx) — authenticate with `x-api-key`, validate auth with `whoami`, and understand the JSON envelope.
- [SDK](https://www.socialfetch.dev/docs/sdk.mdx) — official TypeScript SDK guide, including `SocialFetchClient`, `Result`, and `unwrap()`.
- [Capability matrix](https://www.socialfetch.dev/docs/capability-matrix.mdx) — every operation with identifiers, pagination, outcomes, media download, credits, and its SDK method. Generated from OpenAPI, so use it for route selection instead of scanning individual pages.
- [Recipes](https://www.socialfetch.dev/docs/recipes.mdx) — copyable workflows (brand monitoring, transcripts, Ad Library, creator scoring, Reddit research) with credit callouts and SDK examples.
- [Integrations](https://www.socialfetch.dev/docs/integrations.mdx) — MCP for AI clients, n8n verified node, Apify Store Actors, Make custom app, SDK, and REST API connection paths.
- [MCP product page](https://www.socialfetch.dev/mcp) — hosted MCP overview, OAuth, Skills install.
- [MCP integration](https://www.socialfetch.dev/docs/integrations/mcp.mdx) — hosted `/mcp` server, OAuth, Cursor/VS Code/Claude install snippets, 204 endpoint tools, plus docs_search/docs_read for implementation help.
- [n8n integration](https://www.socialfetch.dev/docs/integrations/n8n.mdx) — install `n8n-nodes-socialfetch`, credentials, and workflow examples.
- [Apify integration](https://www.socialfetch.dev/docs/integrations/apify.mdx) — Store Actors under @social-fetch, PPE billing, dataset export, and quick start.
- [Make integration](https://www.socialfetch.dev/docs/integrations/make.mdx) — custom app modules for Make scenarios, API key credentials, and module catalog.
- [`/llms-endpoints.txt`](https://www.socialfetch.dev/llms-endpoints.txt) — every documented operation with a direct link to that route's agent-readable markdown page (prefer this over parsing OpenAPI).
- [`/llms-{platform}.txt`](https://www.socialfetch.dev/llms-tiktok.txt) — per-platform endpoint files generated from OpenAPI (parameters, credits, curls).
- [`/agents.txt`](https://www.socialfetch.dev/agents.txt) — agent crawl/onboarding file with capabilities, auth rules, and allowlist.
- [`/llms.json`](https://www.socialfetch.dev/llms.json) — structured machine-readable operation inventory with parameter names, pagination, outcomes, credits, and SDK mapping.
- [API reference hub](https://www.socialfetch.dev/docs/api.mdx) — human-friendly index of operations with links into generated pages.
- [Errors](https://www.socialfetch.dev/docs/errors.mdx) — shared error envelope and HTTP status guidance.
- [Credits](https://www.socialfetch.dev/docs/credits.mdx) — metering, `402`, and planning batch jobs.
- Outcome semantics such as `found`, `not_found`, and `private` are documented in [Errors](https://www.socialfetch.dev/docs/errors.mdx) and on operation pages when present in the OpenAPI contract.

## Markdown docs convention

- Every docs page has a markdown twin: append **`.mdx`** to the docs pathname (for example `/docs/quickstart` → `/docs/quickstart.mdx`).
- Agents that send `Accept: text/markdown` on `/docs/**` HTML URLs may receive markdown directly (same URL, `Vary: Accept`).
- Published blog posts use the same convention: `/blog/{slug}` → `/blog/{slug}.mdx`, or `Accept: text/markdown` on the HTML URL (`Vary: Accept`).

---
# List quote tweets of a tweet (https://www.socialfetch.dev/docs/api/v1/twitter/tweets/quotes/get)

## Summary

List tweets that quote a tweet, by permalink or id.

**Tags:** `Twitter`

## HTTP

- **Method:** GET
- **Path:** `/v1/twitter/tweets/quotes`
- **Base URL:** `https://api.socialfetch.dev`

## Capability summary

- **SDK mapping:** `client.twitter.listTweetQuotes({ url, cursor? })`
- **Accepted identifiers:** `url` (query)
- **Pagination:** cursor via `cursor`, next cursor: `data.page.nextCursor`, has more: `data.page.hasMore`
- **Business outcome field:** `data.lookupStatus` with values `found`, `not_found`, `private`

## Credits

- **Base:** 1 credit per successful lookup.
- **Maximum on success (200):** 1 credit.
- **Normalization failure (502):** 0 credits charged.
- **Authoritative field:** `meta.creditsCharged`.

## Authentication

- **`x-api-key`**: API key (`sfk_...`)

## Parameters

### `url` (query)

- **Required:** yes
- **Constraints:** type `string`; minLength: 1; maxLength: 4096
- **Description:** Tweet permalink or numeric id.

### `cursor` (query)

- **Required:** no
- **Constraints:** type `string`; minLength: 1
- **Description:** Opaque pagination cursor returned by a previous response.

## Pagination

This endpoint uses **cursor-based pagination** via the `cursor` query parameter.

- Read **hasMore** from `data.page.hasMore`.
- When that value is `true`, read **nextCursor** from `data.page.nextCursor` and pass it as the `cursor` query parameter on the **next** request (URL-encode when building a query string).
- Omit `cursor` on the **first** request.
- Stop when **hasMore** is `false` or **nextCursor** is null (end of list).

## Responses (status codes)

- **200**: Quote tweets of the requested tweet.
- **400**: Invalid tweet URL, cursor, or bad request
- **401**: Missing or invalid API key
- **402**: Insufficient credits
- **500**: Unexpected or billing error
- **502**: Lookup could not be completed from the response (unexpected or invalid data).
- **503**: Service temporarily unavailable; safe to retry with backoff.

## Response body (200)

Quote tweets of the requested tweet.

### Field outline

- **data** (required) — type `object`. Endpoint-specific response payload.
  - **lookupStatus** (required) — type `string`; enum: found, not_found, private. Whether the tweet list was resolved.
  - **tweets** (required) — type `array`. Tweets returned for this page.
    - _items:_
      - **id** (required) — type `string`; minLength: 1. Tweet id.
      - **url** (required) — type `string`; nullable. Canonical public URL for the tweet when available.
      - **text** (required) — type `string`. Full tweet text when available.
      - **createdAt** (required) — type `string`. Creation time (ISO-8601).
      - **createdAtLabel** (required) — type `string`; nullable. Human-readable creation timestamp string when available.
      - **language** (required) — type `string`; nullable. Language code for the tweet when available.
      - **conversationId** (required) — type `string`; minLength: 1; nullable. Conversation identifier when supplied.
      - **inReplyToStatusId** (required) — type `string`; minLength: 1; nullable. Parent post identifier when this post is a reply.
      - **quotedStatusId** (required) — type `string`; minLength: 1; nullable. Quoted post identifier when this post quotes another.
      - **retweetTweetId** (required) — type `string`; minLength: 1; nullable. Original post identifier when this post is an engagement repost.
      - **author** (required) — type `object`; nullable. Author metadata for the tweet when available.
        - **handle** (required) — type `string`; minLength: 1. Author handle without the leading @.
        - **displayName** (required) — type `string`; nullable. Display name shown for the author.
        - **avatarUrl** (required) — type `string`; nullable. Profile image URL for the author when available.
        - **profileUrl** (required) — type `string`; nullable. Canonical public profile URL for the author when available.
        - **verified** (required) — type `boolean`. Whether the author has legacy verification on X.
        - **blueVerified** (required) — type `boolean`. Whether the author has paid blue verification on X.
        - **platformUserId** (optional) — type `string`. Numeric X user id for the author as a string.
      - **metrics** (required) — type `object`. Engagement metrics for a tweet.
        - **likes** (required) — type `integer`; minimum: 0. Like count.
        - **retweets** (required) — type `integer`; minimum: 0. Retweet count.
        - **replies** (required) — type `integer`; minimum: 0. Reply count.
        - **quotes** (required) — type `integer`; minimum: 0. Quote count.
        - **views** (required) — type `integer`; minimum: 0; nullable. View count when available.
        - **bookmarkCount** (required) — type `integer`; minimum: 0; nullable. Bookmark count when available.
      - **media** (required) — type `array`. Media attachments returned for the tweet.
        - _items:_
          - **url** (required) — type `string`; minLength: 1. Direct media URL when available.
          - **type** (required) — type `string`; enum: photo, video, animated_gif. Media type when Social Fetch can classify it confidently.
          - **thumbnailUrl** (optional) — type `string`; minLength: 1. Poster or thumbnail URL for video media when distinguishable.
          - **contentType** (optional) — type `string`; minLength: 1. MIME type reported for streamed media.
          - **bitrate** (optional) — type `integer`; minimum: 0. Bitrate in bits per second when supplied for streamed media.
          - **width** (optional) — type `integer`; minimum: 0. Width in pixels when available.
          - **height** (optional) — type `integer`; minimum: 0. Height in pixels when available.
      - **expandedUrl** (required) — type `string`; nullable. Expanded URL attached to the tweet when available.
      - **isRetweet** (required) — type `boolean`. Whether the tweet is marked as a retweet.
      - **isReply** (optional) — type `boolean`; default: `false`. Whether the tweet is a reply to another post.
      - **isQuote** (optional) — type `boolean`; default: `false`. Whether the tweet quotes another post.
      - **source** (required) — type `string`; nullable. Source label such as `Twitter Web App` when available.
      - **communityId** (optional) — type `string`; nullable. Community id when the tweet was posted to a community.
      - **hasAIGeneratedMedia** (optional) — type `boolean`; nullable. Whether X marks the tweet as containing AI-generated media.
      - **isPaidPromotion** (optional) — type `boolean`; nullable. Whether X marks the tweet as a paid promotion.
      - **isTranslatable** (optional) — type `boolean`; nullable. Whether X considers the tweet text translatable.
      - **hasBirdwatchNotes** (optional) — type `boolean`; nullable. Whether Community Notes are attached to this tweet.
      - **quotedTweet** (optional) — type `object`; nullable. Quoted tweet expanded one level (no further nesting).
        - **id** (required) — type `string`; minLength: 1. Tweet id.
        - **url** (required) — type `string`; nullable. Canonical public URL for the tweet when available.
        - **text** (required) — type `string`. Full tweet text when available.
        - **createdAt** (required) — type `string`. Creation time (ISO-8601).
        - **createdAtUnix** (required) — type `integer`; minimum: 0. Legacy Unix epoch seconds for tweet creation. Prefer createdAt.
        - **createdAtLabel** (required) — type `string`; nullable. Human-readable creation timestamp string when available.
        - **language** (required) — type `string`; nullable. Language code for the tweet when available.
        - **conversationId** (required) — type `string`; minLength: 1; nullable. Conversation identifier when supplied.
        - **inReplyToStatusId** (required) — type `string`; minLength: 1; nullable. Parent post identifier when this post is a reply.
        - **quotedStatusId** (required) — type `string`; minLength: 1; nullable. Quoted post identifier when this post quotes another.
        - **retweetTweetId** (required) — type `string`; minLength: 1; nullable. Original post identifier when this post is an engagement repost.
        - **author** (required) — type `object`; nullable. Author metadata for the tweet when available.
          - **handle** (required) — type `string`; minLength: 1. Author handle without the leading @.
          - **displayName** (required) — type `string`; nullable. Display name shown for the author.
          - **avatarUrl** (required) — type `string`; nullable. Profile image URL for the author when available.
          - **profileUrl** (required) — type `string`; nullable. Canonical public profile URL for the author when available.
          - **verified** (required) — type `boolean`. Whether the author has legacy verification on X.
          - **blueVerified** (required) — type `boolean`. Whether the author has paid blue verification on X.
          - **platformUserId** (optional) — type `string`. Numeric X user id for the author as a string.
        - **metrics** (required) — type `object`. Engagement metrics for a tweet.
          - **likes** (required) — type `integer`; minimum: 0. Like count.
          - **retweets** (required) — type `integer`; minimum: 0. Retweet count.
          - **replies** (required) — type `integer`; minimum: 0. Reply count.
          - **quotes** (required) — type `integer`; minimum: 0. Quote count.
          - **views** (required) — type `integer`; minimum: 0; nullable. View count when available.
          - **bookmarkCount** (required) — type `integer`; minimum: 0; nullable. Bookmark count when available.
        - **media** (required) — type `array`. Media attachments returned for the tweet.
          - _items:_
        - **expandedUrl** (required) — type `string`; nullable. Expanded URL attached to the tweet when available.
        - **isRetweet** (required) — type `boolean`. Whether the tweet is marked as a retweet.
        - **isReply** (optional) — type `boolean`; default: `false`. Whether the tweet is a reply to another post.
        - **isQuote** (optional) — type `boolean`; default: `false`. Whether the tweet quotes another post.
        - **source** (required) — type `string`; nullable. Source label such as `Twitter Web App` when available.
        - **communityId** (optional) — type `string`; nullable. Community id when the tweet was posted to a community.
        - **hasAIGeneratedMedia** (optional) — type `boolean`; nullable. Whether X marks the tweet as containing AI-generated media.
        - **isPaidPromotion** (optional) — type `boolean`; nullable. Whether X marks the tweet as a paid promotion.
        - **isTranslatable** (optional) — type `boolean`; nullable. Whether X considers the tweet text translatable.
        - **hasBirdwatchNotes** (optional) — type `boolean`; nullable. Whether Community Notes are attached to this tweet.
      - **retweetedTweet** (optional) — type `object`; nullable. Reposted tweet expanded one level (no further nesting).
        - **id** (required) — type `string`; minLength: 1. Tweet id.
        - **url** (required) — type `string`; nullable. Canonical public URL for the tweet when available.
        - **text** (required) — type `string`. Full tweet text when available.
        - **createdAt** (required) — type `string`. Creation time (ISO-8601).
        - **createdAtUnix** (required) — type `integer`; minimum: 0. Legacy Unix epoch seconds for tweet creation. Prefer createdAt.
        - **createdAtLabel** (required) — type `string`; nullable. Human-readable creation timestamp string when available.
        - **language** (required) — type `string`; nullable. Language code for the tweet when available.
        - **conversationId** (required) — type `string`; minLength: 1; nullable. Conversation identifier when supplied.
        - **inReplyToStatusId** (required) — type `string`; minLength: 1; nullable. Parent post identifier when this post is a reply.
        - **quotedStatusId** (required) — type `string`; minLength: 1; nullable. Quoted post identifier when this post quotes another.
        - **retweetTweetId** (required) — type `string`; minLength: 1; nullable. Original post identifier when this post is an engagement repost.
        - **author** (required) — type `object`; nullable. Author metadata for the tweet when available.
          - **handle** (required) — type `string`; minLength: 1. Author handle without the leading @.
          - **displayName** (required) — type `string`; nullable. Display name shown for the author.
          - **avatarUrl** (required) — type `string`; nullable. Profile image URL for the author when available.
          - **profileUrl** (required) — type `string`; nullable. Canonical public profile URL for the author when available.
          - **verified** (required) — type `boolean`. Whether the author has legacy verification on X.
          - **blueVerified** (required) — type `boolean`. Whether the author has paid blue verification on X.
          - **platformUserId** (optional) — type `string`. Numeric X user id for the author as a string.
        - **metrics** (required) — type `object`. Engagement metrics for a tweet.
          - **likes** (required) — type `integer`; minimum: 0. Like count.
          - **retweets** (required) — type `integer`; minimum: 0. Retweet count.
          - **replies** (required) — type `integer`; minimum: 0. Reply count.
          - **quotes** (required) — type `integer`; minimum: 0. Quote count.
          - **views** (required) — type `integer`; minimum: 0; nullable. View count when available.
          - **bookmarkCount** (required) — type `integer`; minimum: 0; nullable. Bookmark count when available.
        - **media** (required) — type `array`. Media attachments returned for the tweet.
          - _items:_
        - **expandedUrl** (required) — type `string`; nullable. Expanded URL attached to the tweet when available.
        - **isRetweet** (required) — type `boolean`. Whether the tweet is marked as a retweet.
        - **isReply** (optional) — type `boolean`; default: `false`. Whether the tweet is a reply to another post.
        - **isQuote** (optional) — type `boolean`; default: `false`. Whether the tweet quotes another post.
        - **source** (required) — type `string`; nullable. Source label such as `Twitter Web App` when available.
        - **communityId** (optional) — type `string`; nullable. Community id when the tweet was posted to a community.
        - **hasAIGeneratedMedia** (optional) — type `boolean`; nullable. Whether X marks the tweet as containing AI-generated media.
        - **isPaidPromotion** (optional) — type `boolean`; nullable. Whether X marks the tweet as a paid promotion.
        - **isTranslatable** (optional) — type `boolean`; nullable. Whether X considers the tweet text translatable.
        - **hasBirdwatchNotes** (optional) — type `boolean`; nullable. Whether Community Notes are attached to this tweet.
  - **page** (required) — type `object`. Cursor pagination for this tweet list.
    - **hasMore** (required) — type `boolean`. Whether another page is available.
    - **nextCursor** (required) — type `string`; nullable. Cursor to pass in the next request when more pages exist; null on the last page.
- **meta** (required) — type `object`. Metadata describing the request and billing outcome.
  - **requestId** (required) — type `string`; minLength: 1. Unique request identifier for tracing this API call.
  - **creditsCharged** (required) — type `integer`; minimum: 0. Credits charged for this request.
  - **version** (required) — type `string`; enum: v1. Public API version that served the response.
  - **cached** (optional) — type `boolean`. True when served from shared response cache. Credits still apply (full endpoint price); Age header may be present.

### Example JSON (found)

```json
{
  "data": {
    "lookupStatus": "found",
    "tweets": [
      {
        "id": "2097565475106607392",
        "url": "https://x.com/tamachankensei/status/2097565475106607392",
        "text": "『🚨 速報：\n\nネグセ氏：「この会社の本社はどこにあるのですか？」\n\nノエム氏：「わかりません。」\n\nネグセ氏：「私もわかりません。見つけることができませんでした。しかし、ある政治活動家と関連のある登録住所は見つかりました。』",
        "createdAt": "2026-09-09T05:59:14.000Z",
        "createdAtLabel": null,
        "language": "ja",
        "conversationId": "2097565475106607392",
        "inReplyToStatusId": null,
        "quotedStatusId": "2097379688226468092",
        "retweetTweetId": null,
        "author": {
          "handle": "tamachankensei",
          "displayName": "たまサポ(玉造順一さん勝手連)",
          "avatarUrl": "https://pbs.twimg.com/profile_images/1583056731080634368/_UWtO5jc_400x400.jpg",
          "profileUrl": "https://x.com/tamachankensei",
          "verified": false,
          "blueVerified": false,
          "platformUserId": "1066363935060705282"
        },
        "metrics": {
          "likes": 0,
          "retweets": 0,
          "replies": 1,
          "quotes": 0,
          "views": 28,
          "bookmarkCount": 0
        },
        "media": [],
        "expandedUrl": null,
        "isRetweet": false,
        "isReply": false,
        "isQuote": true,
        "source": "Twitter for Android",
        "communityId": null,
        "hasAIGeneratedMedia": false,
        "isPaidPromotion": false,
        "isTranslatable": true,
        "hasBirdwatchNotes": false,
        "quotedTweet": {
          "id": "2097379688226468092",
          "url": "https://x.com/GBC_Press/status/2097379688226468092",
          "text": "🚨 BREAKING:\n\nNeguse: \"Where is this company's headquarters?\"\n\nNoem: \"I don't know.\"\n\nNeguse: \"Neither do I. We couldn't find it. But we found a registered address linked to a political activist. This company, which received $143 million, was created eight days before this contract was awarded.\n\nYou want the American …",
          "createdAt": "2026-09-08T17:40:59.000Z",
          "createdAtUnix": 1788889259,
          "createdAtLabel": null,
          "language": "en",
          "conversationId": "2097379688226468092",
          "inReplyToStatusId": null,
          "quotedStatusId": null,
          "retweetTweetId": null,
          "author": {
            "handle": "GBC_Press",
            "displayName": "GBC",
            "avatarUrl": "https://pbs.twimg.com/profile_images/2069837423501336576/2v_ezrvn_400x400.jpg",
            "profileUrl": "https://x.com/GBC_Press",
            "verified": false,
            "blueVerified": true,
            "platformUserId": "2027843808139087875"
          },
          "metrics": {
            "likes": 22597,
            "retweets": 6499,
            "replies": 239,
            "quotes": 220,
            "views": 582927,
            "bookmarkCount": 1250
          },
          "media": [
            {
              "url": "https://video.twimg.com/amplify_video/2029257004175507456/vid/avc1/480x270/H1cF2ecioZ2UwQDE.mp4?tag=14",
              "type": "video",
              "thumbnailUrl": "https://pbs.twimg.com/amplify_video_thumb/2029257004175507456/img/eXojZ8Jpx-3ad8TZ.jpg",
              "contentType": "video/mp4",
              "bitrate": 288000,
              "width": 3840,
              "height": 2160
            }
          ],
          "expandedUrl": "https://x.com/Acyn/status/2029257090318086439/video/1",
          "isRetweet": false,
          "isReply": false,
          "isQuote": false,
          "source": "Twitter for Android",
          "communityId": null,
          "hasAIGeneratedMedia": false,
          "isPaidPromotion": false,
          "isTranslatable": false,
          "hasBirdwatchNotes": false
        },
        "retweetedTweet": null
      }
    ],
    "page": {
      "hasMore": true,
      "nextCursor": "eyJ2IjoxLCJjIjoiREFBQ0NnQUNIUjVVVk9iQUp4QUtBQU1kSGxSVTVyX1k4QWdBQkFBQUFBSUxBQVVBQUFFOFJXMVFRelozUVVGQlpsRXZaMGRLVGpCMlIzQXZRVUZCUVVKelVGbDFOVUZ6T1daUlFVSXdZMFJMSzNNeWJFVm5TRkpxVlZsa1dHRmpaVVZrUjI5Uk5XeDRjVkZHYUhjdk5rbEJNakpzUm5OSVVtWXhkMVEyV0hkRk5HUklVVVJVVFdSa2VFaEJkVEkxTUdKc1JqVkJRVWhTV1dkV01XUmlSVkJGWVdGU1QwMHlNVnB…"
    }
  },
  "meta": {
    "requestId": "req_example_twitter_tweet-quotes",
    "creditsCharged": 1,
    "version": "v1"
  }
}
```

### Machine-readable error codes

When an error JSON body is returned, it may include one of these `error.code` values (derived from the OpenAPI schemas for this operation; additional codes may exist at runtime):

- `bad_request`

## Error handling & retries

Interpret HTTP status codes using the descriptions below. Do not assume a JSON body unless the OpenAPI schema defines one for that status.

- **400**: Invalid tweet URL, cursor, or bad request **Retry:** Fix the request; retrying the same invalid payload will not help.
- **401**: Missing or invalid API key **Retry:** Fix the API key first; retrying without changes will not help.
- **402**: Insufficient credits **Retry:** Do not retry without resolving billing/credits (retrying the same request will not help).
- **500**: Unexpected or billing error
- **502**: Lookup could not be completed from the response (unexpected or invalid data). **Retry:** May be transient; a few retries with backoff are reasonable.
- **503**: Service temporarily unavailable; safe to retry with backoff. **Retry:** Usually safe to retry with exponential backoff and jitter.

### Suggested client defaults

- Send the API key using the `x-api-key` header on every request.
- On `503` (and sometimes `502`), retry with backoff; cap retries and surface a clear error to the user.
- On `402`, surface an actionable billing message rather than blind retries.

## Examples

### TypeScript SDK

```typescript
import { SocialFetchClient } from "@socialfetch/sdk";

const client = new SocialFetchClient({
  apiKey: process.env.SOCIALFETCH_API_KEY!,
});

const result = await client.twitter.listTweetQuotes({
  url: "https://x.com/jack/status/20",
});

if (!result.ok) {
  console.error(result.error);
} else {
  console.log(result.value.data);
}
```

### Node.js

```javascript
const response = await fetch(
  "https://api.socialfetch.dev/v1/twitter/tweets/quotes?url=https://x.com/jack/status/20",
  {
    headers: {
      "x-api-key": "YOUR_API_KEY"
    }
  }
);

const data = await response.json();
console.log(data);
```

### cURL

```bash
curl "https://api.socialfetch.dev/v1/twitter/tweets/quotes?url=https://x.com/jack/status/20" \
  -H "x-api-key: YOUR_API_KEY"
```

### Python

```python
import requests

response = requests.get(
    "https://api.socialfetch.dev/v1/twitter/tweets/quotes?url=https://x.com/jack/status/20",
    headers={"x-api-key": "YOUR_API_KEY"},
)
data = response.json()
print(data)
```

### Example: next page (pagination)

After a successful response, if pagination is not finished, request the next page using `cursor` (URL-encode when composing the query string):

```javascript
const previous = await response.json();
const nextCursor = previous?.data?.page?.nextCursor;
const hasMore = previous?.data?.page?.hasMore;
if (!hasMore || nextCursor == null) {
  // no more pages
} else {
  const nextUrl = new URL("https://api.socialfetch.dev/v1/twitter/tweets/quotes");
  nextUrl.searchParams.set("cursor", nextCursor);
  // optionally preserve sort: nextUrl.searchParams.set("sortBy", "latest");
  const nextResponse = await fetch(nextUrl.toString(), {
    headers: { "x-api-key": "YOUR_API_KEY" },
  });
  const nextData = await nextResponse.json();
}
```