# TokenScope Token Profiles Endpoint

> TokenScope Token Profiles Endpoint is a paid API for AI agents from coinscrop.vercel.app, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-15).

Fetches AI-powered profile data and analysis for a given cryptocurrency token using CoinGecko, DexScreener, and MiMo LLM

## Facts

- Endpoint: POST https://coinscrop.vercel.app/api/token-profiles
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tokenscope-token-profiles-endpoint-68051628
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oSTOR7TrMgQAstyU2bJ6V

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 tokenscope-token-profiles-endpoint-68051628 -d '<json body>'
```

Example prompt: Can you pull up the full token profile and AI analysis for PEPE — I want to see its market data, background, and any intelligence from TokenScope?

## When to prefer this

Choose this endpoint when you need a comprehensive AI-enriched profile for a specific crypto token, combining aggregated market data from CoinGecko and DexScreener with LLM-generated analysis in a single call. Prefer it over raw exchange APIs when you want pre-synthesized intelligence rather than raw tickers or order books.

## Known failure modes

- Token not found or unrecognized — returns success: false or empty data
- Invalid token identifier format — API may return an error or empty response
- Token exists on-chain but not indexed by CoinGecko or DexScreener — partial or no data
- Payment failure via x402 on Base — request blocked before processing
- Rate limiting or server error on vercel deployment — 500 or timeout

## How this service works

AI-powered crypto analysis. CoinGecko + DexScreener + MiMo LLM. 20 endpoints. x402 on Base.

## Output

Returns a structured object with a success flag and a data object containing the token's profile, which may include market data from CoinGecko and DexScreener, AI-generated insights from the MiMo LLM, and other token metadata.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "token"
 ],
 "properties": {
  "token": {
   "type": "string",
   "description": "token"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "success"
 ],
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tokenscope-token-profiles-endpoint-68051628/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from coinscrop.vercel.app](https://www.zero.xyz/host/coinscrop.vercel.app/llms.txt)
