# Pa1m Reddit User Profile API

> Pa1m Reddit User Profile API is a paid API for AI agents from reddit.hypa1m.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Fetches Reddit user profile and post data by username via pay-per-request x402 USDC micropayment on Base

## Facts

- Endpoint: GET https://reddit.hypa1m.xyz/user/%7Busername%7D
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/pa1m-reddit-user-profile-api-f71491ef
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PgR_W5v0oMX7UkoDJbXgn

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 pa1m-reddit-user-profile-api-f71491ef
```

Example prompt: Pull the Reddit post history for user 'spez' — I want to see what they've been posting recently.

## When to prefer this

Choose this endpoint when you need to retrieve Reddit post data for a specific user by username in an agent workflow that supports x402 micropayments on Base. It is ideal for AI agents that need pay-per-use Reddit data access without managing Reddit API credentials or OAuth, and want simple per-call USDC billing.

## Known failure modes

- Username does not exist — returns empty posts array
- Private or suspended account — may return empty or error response
- Rate limiting or payment failure — request blocked if USDC payment via x402 is not processed
- Missing required username path parameter — request fails to route correctly
- Malformed username string — returns empty or error response

## How this service works

Reddit data API for AI agents — pay-per-request via x402 USDC on Base

## Output

Returns a JSON object containing a list of posts from the specified Reddit user and a pagination cursor ('after') for fetching subsequent pages. Posts array may be empty if the user has no public posts.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "username"
     ],
     "properties": {
      "username": {
       "type": "string",
       "description": "Reddit username without the u/ prefix"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "after": null,
  "posts": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pa1m-reddit-user-profile-api-f71491ef/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from reddit.hypa1m.xyz](https://www.zero.xyz/host/reddit.hypa1m.xyz/llms.txt)
