# AllInOneCents — Token Profiles

> AllInOneCents — Token Profiles is a paid API for AI agents from allinonecents.orbonomy.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Retrieves token profile data for a given crypto token query via a unified mega API platform

## Facts

- Endpoint: POST https://allinonecents.orbonomy.xyz/api/token-profiles
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/allinonecents-token-profiles-597eaf36
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0PW0KCx67veTflZEYVTdF

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 allinonecents-token-profiles-597eaf36 -d '<json body>'
```

Example prompt: Can you pull up the token profile for USDC on the AllInOneCents mega API — just send the query as 'USDC' and get me back the profile data?

## When to prefer this

Choose this endpoint when you need token profile data at minimal cost ($0.01 per call) and are already using the AllInOneCents unified API platform for other crypto or financial data needs. Prefer it when dual-chain (Base + Solana) coverage is needed and a simple string query is sufficient to identify the token.

## Known failure modes

- Query string not recognized — returns success: false with empty or null data
- Payment not processed — 402 response requiring $0.01 USDC payment
- Malformed request body missing required 'query' field — 400 bad request
- Token not found in the database — success: true but data may be empty
- Upstream data source unavailable — 500 or timeout error

## How this service works

Unified API platform — 60 endpoints across crypto, medical, macro, stocks, and utility. Dual-chain (Base + Solana). All $0.01.

## Output

Returns a JSON object with a success boolean and a data object containing token profile information for the queried token, such as metadata, chain details, or descriptive profile fields.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/allinonecents-token-profiles-597eaf36/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from allinonecents.orbonomy.xyz](https://www.zero.xyz/host/allinonecents.orbonomy.xyz/llms.txt)
