# Logos by Readia Creator Dashboard

> Logos by Readia Creator Dashboard is a paid API for AI agents from api.logos.readia.io, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Retrieves the authenticated creator's dashboard including article list, engagement metrics, and hints for delete/edit operations on the Logos x402-powered marketplace.

## Facts

- Endpoint: POST https://api.logos.readia.io/api/agent/dashboard
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/logos-by-readia-creator-dashboard-0de8fe67
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dImpyjlMEFVNGt1VWluIr

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 logos-by-readia-creator-dashboard-0de8fe67 -d '<json body>'
```

Example prompt: Show me my Logos by Readia creator dashboard — I want to see all my published articles along with their individual engagement metrics and any available edit or delete options.

## When to prefer this

Use this endpoint when an agent needs to retrieve a Logos by Readia creator's own content inventory and performance metrics in a single call. Prefer this over article-purchase or tip endpoints when the goal is monitoring or managing existing published content rather than consuming or financially interacting with others' content.

## Known failure modes

- Payment failure — x402 payment of $0.01 USDC not processed, returns 402 Payment Required
- Unauthorized — invalid or missing creator credentials, returns 401
- No articles found — creator has no published content, returns empty article list
- Network timeout — upstream service unavailable, returns 503
- Invalid wallet — payout wallet not configured, may affect payment processing

## How this service works

Access your creator dashboard: $0.01
Creator Metrics Hints for Delete and Edit endpoints All articles along with individual engagement metrics

## Output

Returns the creator's full dashboard data: a list of all published articles with per-article engagement metrics (views, reads, tips, etc.), plus contextual hints indicating which articles are eligible for delete or edit operations.

## Response schema (JSON Schema)

```json
{
 "data": {
  "author": {
   "address": "0x...",
   "totalViews": 5000,
   "totalArticles": 15,
   "totalEarnings": 125.5,
   "totalPurchases": 250
  },
  "articles": [
   {
    "id": 123,
    "price": 0.1,
    "title": "Example Article",
    "views": 500,
    "purchases": 50
   }
  ],
  "articleCount": 15
 },
 "success": true
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/logos-by-readia-creator-dashboard-0de8fe67/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.logos.readia.io](https://www.zero.xyz/host/api.logos.readia.io/llms.txt)
