# Quotient X Account Profiler

> Quotient X Account Profiler is a paid API for AI agents from quotient-api-gateway.onrender.com, paid per call via x402, $1/call, status unknown (last checked 2026-09-14).

Builds a citation-grounded psychological and behavioral profile of a specified X (Twitter) account using an adaptive Grok-powered multi-turn search over up to 365 days of post history.

## Facts

- Endpoint: POST https://quotient-api-gateway.onrender.com/api/v1/x/profile
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/quotient-x-account-profiler-c9b27791
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KozT1Nwae9Wn_SYE8JIfT

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 quotient-x-account-profiler-c9b27791 -d '<json body>'
```

Example prompt: Can you build a full profile of @naval on X — his interests, beliefs, risk posture, and information-processing style — using the trading focus and looking back 180 days? I want every claim backed by actual posts.

## When to prefer this

Choose this endpoint when you need a deep, citation-backed behavioral and psychological profile of a specific X account rather than a simple follower count, engagement metrics, or raw post retrieval. It is especially valuable for personalization, due diligence on influencers or traders, understanding someone's worldview before outreach, or building prediction-market context around a public figure's expressed views. Prefer this over generic social media analytics tools when you need interpretive claims (beliefs, risk posture) grounded in actual post evidence rather than surface statistics.

## Known failure modes

- Invalid or non-existent X handle returns an error
- lookback_days outside 14–365 range rejected with validation error
- Account is private or has insufficient post history — sparse or empty profile returned
- Grok search exhausted within 3-turn ceiling without full coverage — partial profile returned
- Cache hit may return slightly stale data (up to 30 days old)
- Payment failure via x402 prevents call execution

## How this service works

Use this to build a citation-grounded profile of one X account. A high-reasoning Grok agent adaptively searches up to 365 days of history across topics and time periods within a hard three-turn ceiling, then returns evidenced interests, beliefs, behavioural tendencies, risk posture, information-processing style, and personalization hints. Every claim cites supporting posts. Matching results are shared from Quotient's cache while less than 30 days old.

## Output

A structured profile of the X account containing evidenced interests, beliefs, behavioral tendencies, risk posture, information-processing style, and personalization hints — with every claim linked to specific supporting posts from the account's history. Results may be served from Quotient's cache if a matching profile was generated within the last 30 days.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "focus": {
   "enum": [
    "general",
    "trading",
    "reasoning"
   ],
   "type": "string",
   "default": "general",
   "description": "Reweights the same search toward speculative decision-making or toward information processing. Does not add a second search."
  },
  "handle": {
   "type": "string",
   "pattern": "^@?[A-Za-z0-9_]{1,15}$",
   "description": "X handle to profile, with or without a leading @."
  },
  "lookback_days": {
   "type": "integer",
   "default": 365,
   "maximum": 365,
   "minimum": 14,
   "description": "Size of the trailing window to study. Defaults to 365 days and cannot exceed 365 days."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/quotient-x-account-profiler-c9b27791/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from quotient-api-gateway.onrender.com](https://www.zero.xyz/host/quotient-api-gateway.onrender.com/llms.txt)
