# StableSocial Reddit Search Profiles

> StableSocial Reddit Search Profiles is a paid API for AI agents from StableSocial at stablesocial.dev, paid per call via MPP or x402, $0.06/call, status unknown (last checked 2026-09-14).

Search Reddit user profiles by keyword and return matching profile results

## Facts

- Endpoint: POST https://stablesocial.dev/api/reddit/search-profiles
- Price: $0.06/call
- Payment: MPP, x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Provider: StableSocial
- Docs: https://stablesocial.dev
- Website: https://stablesocial.dev
- Tags: tiktok, instagram, facebook, reddit, scraping, social, data, x402
- Canonical page: https://www.zero.xyz/c/stablesocial-search-profiles-cd364c9b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_szAWMtSuFrqi2SwnpMNRm

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 stablesocial-search-profiles-cd364c9b -d '<json body>'
```

Example prompt: Search Reddit for up to 30 user profiles related to 'machine learning' and give me a list of matching accounts.

## When to prefer this

Use this endpoint when you need to discover Reddit user profiles matching a specific keyword or topic — ideal for lead generation, audience research, finding subject-matter experts, or mapping communities around a theme on Reddit specifically. Prefer over generic web search when you need structured Reddit profile data at scale.

## Known failure modes

- Missing or empty keywords field returns validation error
- No profiles found for obscure or niche keyword returns empty result set
- Rate limiting or upstream Reddit throttling causes failure
- Invalid cursor value causes pagination error
- max_profiles set to 0 or negative may return unexpected results

## How this service works

Pay-per-request access to social media data from TikTok, Instagram, Facebook, Reddit, and LinkedIn. No auth, no subscriptions.

## Output

A list of Reddit user profiles matching the search keyword, including usernames and profile metadata, along with a pagination cursor for retrieving additional results.

## Example request

```json
{
 "keywords": "artificial intelligence",
 "max_profiles": 20,
 "max_page_size": 50
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "cursor": {
   "type": "string",
   "description": "Pagination cursor"
  },
  "keywords": {
   "type": "string",
   "minLength": 1,
   "description": "Search keywords"
  },
  "max_profiles": {
   "type": "integer",
   "default": 50,
   "maximum": 9007199254740991,
   "minimum": -9007199254740991,
   "description": "Maximum profiles to collect"
  },
  "max_page_size": {
   "type": "integer",
   "default": 50,
   "maximum": 9007199254740991,
   "minimum": -9007199254740991,
   "description": "Results per page"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "jobId": "clx0000000000000000000000",
  "token": "eyJ...",
  "status": "pending",
  "pollUrl": "https://stablesocial.dev/api/jobs/clx0000000000000000000000"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablesocial-search-profiles-cd364c9b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stablesocial.dev](https://www.zero.xyz/host/stablesocial.dev/llms.txt)
