Use this to build a citation-grounded profile of one X account
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.
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://quotient-api-gateway.onrender.com/api/v1/x/profile
| Category | Everything else |
|---|---|
| Provider host | quotient-api-gateway.onrender.com |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 2 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $1.00 | 261 ms |
Example input (from the provider)
{
"body": {
"focus": "trading",
"handle": "vitalikbuterin",
"lookback_days": 365
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"focus": {
"default": "general",
"description": "Reweights the same search toward speculative decision-making or toward information processing. Does not add a second search.",
"enum": [
"general",
"trading",
"reasoning"
],
"type": "string"
},
"handle": {
"description": "X handle to profile, with or without a leading @.",
"pattern": "^@?[A-Za-z0-9_]{1,15}$",
"type": "string"
},
"lookback_days": {
"default": 365,
"description": "Size of the trailing window to study. Defaults to 365 days and cannot exceed 365 days.",
"maximum": 365,
"minimum": 14,
"type": "integer"
}
},
"required": [
"handle"
],
"type": "object"
},
"bodyType": {
"enum": [
"json"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input",
"output"
],
"type": "object"
}