$0.11
per call · USD Coin on Base
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).
Endpoint
POST https://api.you.com/v1/finance_research16
Calls / 30d
5
Unique payers / 30d
Sep 5
Last called
exact
Payment scheme
Call this service
import { wrapFetchWithPayment } from "@x402/fetch";
import { privateKeyToAccount } from "viem/accounts";
const account = privateKeyToAccount(process.env.PRIVATE_KEY);
const fetchWithPay = wrapFetchWithPayment(fetch, account);
const res = await fetchWithPay("https://api.you.com/v1/finance_research", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
"input": "What is the bull vs bear case for NVDA over the next 12 months?",
"research_effort": "deep"
}),
});
const data = await res.json();curl -X POST \
"https://api.you.com/v1/finance_research" \
-H "Content-Type: application/json" \
-d '{"input":"What is the bull vs bear case for NVDA over the next 12 months?","research_effort":"deep"}' \
-H "X-PAYMENT: <signed x402 payment>"Example response
{
"jobId": "b2042efe-4cfc-4df5-be39-35be7880c60e",
"poll_url": "/x402/finance_research/results/b2042efe-4cfc-4df5-be39-35be7880c60e",
"status": "pending"
}Payment details
0xc327d0aeb5f65b514b193b5e5a95cc6f4060815fUSD Coin · 0x833589fcd6edb6e08f4c7c32d4f71b54bda02913Is this your API?
Pin it to the top of Search & Web and the homepage with a featured placement.
More from You & similar services
You · Search
api.you.com
You.com Search API: real-time web search returning ranked results grouped by section (results.web, results.news), each with url, title and description; web results also carry snippets. Use when an agent needs fresh, citable web data (news, markets, company facts) to ground a decision. Query params: query (required), count 1-100 (default 10), livecrawl (web|news|all; fetches live page contents, charged per result), country, freshness. Paid per call in USDC.
You · Search
api-staging.you.com
You.com Search API: real-time web search returning ranked results grouped by section (results.web, results.news), each with url, title and description; web results also carry snippets. Use when an agent needs fresh, citable web data (news, markets, company facts) to ground a decision. Query params: query (required), count 1-100 (default 10), livecrawl (web|news|all; fetches live page contents, charged per result), country, freshness. Paid per call in USDC.
You · Finance Research
api-staging.you.com
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).