# Tag lookup

Fetch public Threads tag metadata, including observed total and recent thread volumes.

- Platform: [Threads](https://docs.upscrape.com/docs/platforms/threads)
- Capability ID: `threads.tag`
- Cost: 1 credit per request
- Maximum runtime: 45 seconds
- Execute endpoint: `POST https://data.upscrape.com/execute`

## Request

Use the exact public capability ID in the shared execute envelope.

```bash
curl --request POST \
  --url https://data.upscrape.com/execute \
  --header "Authorization: Bearer YOUR_API_KEY" \
  --header "Content-Type: application/json" \
  --header "Prefer: wait=30" \
  --data '{
  "input": {
    "tag": "photography"
  },
  "capability": "threads.tag"
}'
```

## Input

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `tag` | `string` | Yes | Threads topic tag, with or without a leading #. |

### Example input

```json
{
  "tag": "photography"
}
```

## Response

Successful output is returned in `results[0].data`. Raw platform output is intentionally open-ended and may evolve with the upstream source.

### Illustrative sample output

This redacted fixture is an example, not a fixed response schema.

```json
{
  "canonical_url": "https://www.threads.com/tag/photography",
  "counts_observed": true,
  "description": "109K recent threads · Discover conversations, thoughts, photos and videos related to photography on Threads.",
  "recent_threads": 109000,
  "tag": "photography",
  "tag_url": "https://www.threads.com/tag/photography",
  "title": "photography · 41M threads",
  "total_threads": 41000000
}
```
### Illustrative output fields

Derived from the sample above for orientation only. These fields are not a fixed response schema.

| Path | Observed type | Example |
| --- | --- | --- |
| `canonical_url` | `string` | https://www.threads.com/tag/photography |
| `counts_observed` | `boolean` | true |
| `description` | `string` | 109K recent threads · Discover conversations, thoughts, photos and vide… |
| `recent_threads` | `integer` | 109000 |
| `tag` | `string` | photography |
| `tag_url` | `string` | https://www.threads.com/tag/photography |
| `title` | `string` | photography · 41M threads |
| `total_threads` | `integer` | 41000000 |

## Execution behavior

A `200` response completed inline. A `202` response was queued; poll `GET /jobs/{id}` until the job reaches `completed` or `failed`. Use an `Idempotency-Key` when retrying must not create a duplicate logical job.

## Related documentation

- [Authentication](https://docs.upscrape.com/docs/api/authentication)
- [Jobs and results](https://docs.upscrape.com/docs/api/jobs)
- [Errors and retries](https://docs.upscrape.com/docs/api/errors)
- [Idempotency](https://docs.upscrape.com/docs/api/idempotency)
