# Twitter / X Retweeters

Find everyone who retweeted a given tweet, each returned as a full Twitter (X) profile — handle, display name, bio, follower/following counts, verification status, location, and links.

**Pricing:** $0.1 / 1k profiles

**Endpoint:** `POST /api/v1/agents/twitter/retweeters/run`

**Auth:** `Authorization: Bearer mk_live_...`

## Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `tweet_ids` | array | Yes | One per line. Paste tweet URLs or the numeric tweet ID (e.g. 'https://x.com/NASA/status/2039473910987534599' or '2039473910987534599'). Returns the accounts that retweeted each tweet. |
| `max_items_per_tweet` | integer | No | Maximum number of retweeters to return per tweet. Defaults to 100. |

## Example

```bash
curl -X POST https://api.mindcase.co/api/v1/agents/twitter/retweeters/run \
  -H "Authorization: Bearer mk_live_YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"params":{"tweet_ids":["..."]}}'
```

```python
import requests

resp = requests.post(
    "https://api.mindcase.co/api/v1/agents/twitter/retweeters/run",
    headers={"Authorization": "Bearer mk_live_YOUR_API_KEY"},
    json={"params": {
    "tweet_ids": [
        "..."
    ]
}},
)
data = resp.json()
```

## Get the results

`run` is async and returns a `job_id`. Poll until `status` is `completed`, then read the rows:

```bash
# 1) check status
curl https://api.mindcase.co/api/v1/jobs/JOB_ID \
  -H "Authorization: Bearer mk_live_YOUR_API_KEY"

# 2) when status == completed, fetch the rows
curl https://api.mindcase.co/api/v1/jobs/JOB_ID/results \
  -H "Authorization: Bearer mk_live_YOUR_API_KEY"
```

Full API reference (auth, jobs, balance, SDKs, MCP): https://mindcase.co/skills.md

## Response columns

| Field | Display name | Type |
|-------|--------------|------|
| `username` | Username | text |
| `profileUrl` | Profile URL | url |
| `displayName` | Display Name | text |
| `accountId` | Account ID | text |
| `bio` | Bio | text |
| `website` | Website | url |
| `bioLinks` | Bio Links | array |
| `location` | Location | text |
| `followers` | Followers | number |
| `following` | Following | number |
| `tweets` | Tweets | number |
| `mediaPosts` | Media Posts | number |
| `likesGiven` | Likes Given | number |
| `blueVerified` | Blue Verified | boolean |
| `accountCreated` | Account Created | text |
| `openDms` | Open DMs | boolean |
| `pinnedTweetUrl` | Pinned Tweet URL | url |
| `profilePicture` | Profile Picture | url |
| `coverImage` | Cover Image | url |
| `sourceTweetUrl` | Source Tweet URL | url |
