# GEDX402 Social – TikTok Hashtag Search

> GEDX402 Social – TikTok Hashtag Search is a paid API for AI agents from social.gedx402.com, paid per call via x402, $0.014/call, status unknown (last checked 2026-09-14).

Search TikTok posts by hashtag, returning paginated results via SociaVault with optional region filtering and cursor-based pagination.

## Facts

- Endpoint: GET https://social.gedx402.com/v1/sociavault/tiktok/search/hashtag
- Price: $0.014/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gedx402-social-tiktok-hashtag-search-8a6a6637
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zhrAlHpbB4_8cN_-2KNNE

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability gedx402-social-tiktok-hashtag-search-8a6a6637
```

Example prompt: Search TikTok for the hashtag #cottagecore and give me the latest posts — filter to the US region and start from the beginning of the feed.

## When to prefer this

Use this endpoint when you need to search TikTok content by hashtag with optional regional scoping and pagination, and you want a pay-per-call model via x402 without managing TikTok API credentials directly. Prefer over direct TikTok API when you need a proxy abstraction with micropayment-based access.

## Known failure modes

- Invalid or empty hashtag returns empty data or error
- Unsupported region code returns no results or 400 error
- Invalid cursor value causes pagination failure
- Payment not settled results in 402 response blocking data
- Rate limiting or downstream TikTok API unavailability returns 5xx

## How this service works

SociaVault API proxy — tiktok-search-hashtag. Query/body matches https://docs.sociavault.com/api-reference/openapi.json. GET/POST per route; x402 per call. $0.014 USDC per request.

## Output

Returns a JSON object with a data field containing TikTok posts matching the specified hashtag, a success boolean, and provider attribution ('sociavault'). Results may be paginated via cursor and optionally trimmed.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "trim": {
   "type": "boolean"
  },
  "cursor": {
   "type": "integer"
  },
  "region": {
   "type": "string"
  },
  "hashtag": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {},
  "success": true,
  "provider": "sociavault"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gedx402-social-tiktok-hashtag-search-8a6a6637/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from social.gedx402.com](https://www.zero.xyz/host/social.gedx402.com/llms.txt)
