# Logos by Readia - Delete Article

> Logos by Readia - Delete Article 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).

Permanently deletes an article owned by the authenticated payer from the Logos by Readia x402-powered content marketplace

## Facts

- Endpoint: POST https://api.logos.readia.io/api/agent/deleteArticle
- 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-delete-article-426af303
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_19xwYcf711hyUvtfQCfa3

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-delete-article-426af303 -d '<json body>'
```

Example prompt: Delete my article with ID 1058 from Logos by Readia — I'm the owner and want it permanently removed from the marketplace.

## When to prefer this

Use this endpoint when you need to permanently remove a specific article from the Logos by Readia content marketplace and the calling wallet is the verified owner of that article. Prefer this over any edit or archive operations when full deletion is required.

## Known failure modes

- Article ID not found — returns error if the articleId does not exist
- Ownership mismatch — returns error if the payer wallet does not own the specified article
- Payment failure — x402 payment of $0.01 USDC not completed, request rejected
- Invalid input — articleId missing or not a number
- Article already deleted — attempting to delete a non-existent or already-removed article

## How this service works

Delete article: $0.01

## Output

A confirmation that the article with the specified ID has been deleted from the Logos by Readia marketplace, assuming the caller's wallet is the verified owner.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "articleId"
 ],
 "properties": {
  "articleId": {
   "type": "number",
   "description": "ID of the article to delete (must be owned by payer)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "data": {
  "txHash": "0x...",
  "message": "Article deleted successfully",
  "deletedArticleId": 123
 },
 "success": true
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/logos-by-readia-delete-article-426af303/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)
