# Einstein AI Investment Report API

> Einstein AI Investment Report API is a paid API for AI agents from api.relai.fi, paid per call via x402, $1.15/call, status unknown (last checked 2026-09-14).

Generates a comprehensive investment analysis report for a crypto token on supported blockchains, covering multi-chain data over configurable time periods.

## Facts

- Endpoint: POST https://api.relai.fi/relay/1769629274857/x402/bitquery/investment-report
- Price: $1.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/einstein-ai-investment-report-api-775bc4c2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6Ga9wHX8pyA2U5ytky3nZ

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability einstein-ai-investment-report-api-775bc4c2 -d '<json body>'
```

Example prompt: Give me a comprehensive investment analysis report for this token on the Ethereum chain over the last 7 days, showing up to 50 results.

## When to prefer this

Use this endpoint when you need a structured, multi-dimensional investment analysis report for a specific crypto token on one of the 8 supported chains (base, ethereum, bsc, solana, arbitrum, polygon, optimism, zksync). Prefer this over raw on-chain data endpoints when you need a synthesized, analyst-style report rather than raw trade ticks or price feeds.

## Known failure modes

- Missing required 'chains' parameter returns an error
- Unsupported chain name causes rejection
- Invalid timeperiod enum value returns validation error
- Payment failure (x402) blocks access to the endpoint
- Limit exceeding 500 may be clamped or rejected
- Token not found on specified chain returns empty or error response

## How this service works

Generate comprehensive investment analysis report for any token. Supported chains: base, ethereum, bsc, solana, arbitrum, polygon, optimism, zksync. Default chain: base. Required params: chains.

## Output

A comprehensive investment analysis report for the specified token, including market metrics, trading data, risk signals, and investment-relevant indicators sourced from Bitquery across the requested blockchain and time period.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "string",
   "description": "Maximum number of results to return (default: 10, max: 500)"
  },
  "timeperiod": {
   "enum": [
    "1h",
    "4h",
    "24h",
    "7d",
    "30d"
   ],
   "type": "string",
   "description": "Time period for analysis (e.g., 1h, 24h, 7d, 30d)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/einstein-ai-investment-report-api-775bc4c2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.relai.fi](https://www.zero.xyz/host/api.relai.fi/llms.txt)
