Financial-grade retrieval for AI agents.
Real-time financial news and cited research — one API, one key, built on our own retrieval engine.
Two surfaces, one API.
One key, one credit balance, one MCP endpoint. Pick the surface that answers the question you actually have.
Search
Real-time financial news.
Whole articles, not chunks. Point-in-time correct — ask what the corpus knew on any past date.
$3 / 1k requests
Research
Answers with citations.
An agent that reads the filings and the news, then shows you every source it used. Streams as it works.
up to $5 / turn
Three lines to your first citation.
A real query against the news corpus, returning the source link, the matched passage, and the exact credit cost of the call.
curl -sS https://api.ariselabs-search-api.com/v1/search \
-H "Authorization: Bearer $ARISELABS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"query": "TSMC advanced packaging CoWoS capacity 2027",
"limit": 3,
"indexed_after": "2026-08-01T00:00:00Z",
"snippet_chars": 240
}'Response (excerpt)
{
"object": "search_result_page",
"livemode": true,
"data": [{
"object": "news_result",
"id": "doc_AgFLd3ZQb0h5TmxSc1ZqWnhLd0RtQ2dFdVN0WWJQaU5rMno3RjRhOHhSMWNKdVdlNVE",
"source": "news",
"relevance": 1.0,
"title": "TSMC to more than double CoWoS capacity again in 2027, suppliers say",
"title_source": "publisher",
"url": "https://www.digitimes.com/news/a20260805pd211.html",
"domain": "digitimes.com",
"publisher": "DIGITIMES",
"language": "en",
"published_at": "2026-08-05T02:14:00Z",
"indexed_at": "2026-08-05T04:51:37Z",
"text_access": "full",
"snippet": {
"text": "…TSMC plans to expand CoWoS monthly capacity to roughly 130,000 wafers by the end of 2027, up from about 75,000 exiting 2026…",
"matched": true
}
}],
"has_more": true,
"search_metadata": {
"query": "TSMC advanced packaging CoWoS capacity 2027",
"source": "news",
"as_of": "2026-08-07T13:45:22Z",
"as_of_mode": "current",
"indexed_after_effective": "2026-07-31T13:45:22Z",
"returned_count": 3,
"degraded": [],
"exhausted_reason": null,
"elapsed_ms": 148
},
"usage": { "credits": 4 }
}Already in your editor.
A remote MCP endpoint with OAuth, plus local stdio packages for networks that will not let an agent dial out. Six tools, the same key, the same credit balance.
one command
Claude Code
one file
Cursor
one command
Codex
any client
Remote MCP
Three numbers we can prove.
No head-to-head accuracy chart in v1: we do not have a defensible evaluation set yet. These are ours to verify instead.
11
p95 < 500 ms
—
TODO(content)
首页不许印一个我们兑现不了的历史起点年份。
We wrote the retrieval engine.
Most search APIs are a thin layer over someone else’s vector database. We built ours: hybrid dense + lexical retrieval, object-storage-native, with the index living on ordinary object storage instead of a per-gigabyte vendor bill.
That is not a vanity project. It is why Search costs $3 per thousand requests rather than the seat-licence economics of the incumbents — there is no per-query rent in our cost structure, and our storage bill follows object storage’s curve, not a vector database’s.
Built for people who get audited.
Point-in-time by design
Version-level
as_of: you get the version of each document that was valid at that instant, not everything published before that date. No look-ahead bias in your backtest.Every answer cites
A source URL on every row. No synthesised facts without a document behind them, and the primary call to action on a result is “open the original”.
SOC 2–Aligned Controls
Independent audit in progress. We do not display a badge we have not earned — read the security overview and judge the controls yourself.
Questions we actually get.
How is this different from a general web search API?
Do you return full article text?
What does as_of actually mean?
as_of=2024-06-30.