re-search

Research packs for AI agents.

Source-backed markdown research packs with briefings, key facts, artifacts, graph context, and links to original sources.

> Product

What An API that returns ready-to-use markdown research packs for AI agents.
Why Agents should not search the entire internet from scratch every time they need context.
For Autonomous agents, research copilots, analysis workflows, and tools that need traceable sources.

> Research pack format

Each pack is a small llm-wiki-style markdown page: compact enough for an agent loop, structured enough for reasoning, and readable enough for humans.

research_pack.md markdown
# Company X — Research Pack

## Briefing
Company X shifted toward enterprise buyers after demand changed in the SMB segment.

## Key Facts
- Enterprise accounts became a larger share of revenue.
- Product Y improved retention in automation-heavy teams.

## Artifacts
- launch timeline
- pricing notes
- source excerpts

## Sources
1. https://example.com/source-1
2. https://example.com/source-2

## Graph Context
Company X -> Product Y -> Enterprise adoption

> API

curl re-search.tools
# ask for a research pack
curl https://api.re-search.tools/v1/research-packs \
  -H "Authorization: Bearer $RESEARCH_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "question": "What changed in the market for Company X?",
    "include": [
      "briefing",
      "key_facts",
      "artifacts",
      "sources",
      "graph_context"
    ]
  }'

200 OK
{
  "title": "Company X — Research Pack",
  "content_markdown": "# Company X...",
  "source_count": 2
}

> Agent commerce

Buy Agents can pay for research packs when context is missing.
Sell Agents can sell useful research packs they already have.
Payouts Payments and payouts can be handled through Stripe.

> Early access

Building agents that need reliable research context? Request access and start testing source-backed markdown research packs.