You
You.com Finance Research API: agentic deep research on a financial question, returning a synthesized answer with cited sources. Use when an agent needs well-reasoned market or company analysis for a trading or investment decision. JSON body: input (required question), research_effort (standard | deep | exhaustive, default deep). Paid per call in USDC. Async: paying returns a jobId; poll the SIWX-authed poll_url for the result (deep research takes 1-3 min).
110000 (raw units)
price
5
calls / 30d
3
unique payers
2026-09-05
updated
Provider
api.you.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xc327D0aEb5f65B514b193b5e5A95cC6F4060815f",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "110000",
"maxTimeoutSeconds": 600
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "GBQ2FrH49gvKXu1zg7tguoLwaofn5S4NnuMs5JSYQ5GX",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "110000",
"maxTimeoutSeconds": 600
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"input": "What is the bull vs bear case for NVDA over the next 12 months?",
"research_effort": "deep"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"jobId": "b2042efe-4cfc-4df5-be39-35be7880c60e",
"poll_url": "/x402/finance_research/results/b2042efe-4cfc-4df5-be39-35be7880c60e",
"status": "pending"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"input": {
"description": "The finance research question.",
"maxLength": 40000,
"type": "string"
},
"research_effort": {
"default": "deep",
"description": "Research depth. Higher effort costs more per call: standard, deep, exhaustive.",
"enum": [
"standard",
"deep",
"exhaustive"
],
"type": "string"
}
},
"required": [
"input"
]
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"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"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.you.com/v1/finance_research" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.you.com/v1/finance_research");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://api.you.com/v1/finance_research")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/2181.json, and this resource appears in /discovery/resources and /discovery/search.