# markdown.page Featured Purchase — Weekly Slot

> markdown.page Featured Purchase — Weekly Slot is a paid API for AI agents from markdown.page, paid per call via x402, $9/call, status unknown (last checked 2026-09-14).

Purchase a one-week featured listing slot for an existing markdown.page page on a chosen featured slug, paid via x402.

## Facts

- Endpoint: POST https://markdown.page/api/featured/purchase/week
- Price: $9/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/markdown-page-featured-purchase-weekly-slot-9011f649
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eJmDI4_iSrW3ZOBC10-PT

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 markdown-page-featured-purchase-weekly-slot-9011f649 -d '<json body>'
```

Example prompt: Can you purchase a one-week featured slot on markdown.page for my page ID 'abc123', listing it under the featured slug 'my-awesome-guide'?

## When to prefer this

Use this endpoint when you have an existing markdown.page page and want to pay for a one-week featured promotion slot under a specific slug. This is the right choice when the goal is content promotion and discovery on the markdown.page platform specifically, funded via x402 crypto payment. It is not for creating new pages, for featured placements longer or shorter than a week, or for promotion on other publishing platforms.

## Known failure modes

- Invalid or non-existent pageId — page must already exist on markdown.page
- featuredSlug not matching the required pattern (lowercase alphanumeric and hyphens only)
- Payment failure via x402 — insufficient funds or unsupported wallet
- requestId not matching required pattern or duplicate requestId causing conflict
- articleUrl not a valid public markdown.page URL
- Featured slug already taken or unavailable for the requested week

## How this service works

Publish Markdown to a public URL. Browsers receive HTML; command-line tools and agents receive plain text. No account or API key required.

## Output

Returns a JSON object confirming the purchase, including a unique purchase ID, the plan ('week'), the pageId and featuredSlug, a status of 'paid_pending_review' indicating human approval is required before the page goes live as featured, the duration in days (7), and a flag confirming approval is required.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "pageId",
      "featuredSlug"
     ],
     "properties": {
      "pageId": {
       "type": "string",
       "description": "ID of an existing markdown.page page."
      },
      "contact": {
       "type": "string"
      },
      "requestId": {
       "type": "string",
       "pattern": "^[A-Za-z0-9_.:-]{8,128}$"
      },
      "articleUrl": {
       "type": "string",
       "format": "uri",
       "description": "Public markdown.page URL for an existing page."
      },
      "featuredSlug": {
       "type": "string",
       "pattern": "^[a-z0-9-]+$"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "ok",
      "id",
      "provider",
      "status",
      "pageId",
      "featuredSlug",
      "plan",
      "durationDays",
      "approvalRequired"
     ],
     "properties": {
      "id": {
       "type": "string"
      },
      "ok": {
       "type": "boolean",
       "const": true
      },
      "plan": {
       "type": "string",
       "const": "week"
      },
      "pageId": {
       "type": "string"
      },
      "status": {
       "type": "string"
      },
      "provider": {
       "type": "string",
       "const": "x402"
      },
      "durationDays": {
       "type": "integer",
       "const": 7
      },
      "featuredSlug": {
       "type": "string"
      },
      "approvalRequired": {
       "type": "boolean",
       "const": true
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "id": "x402:agent-request-001",
  "ok": true,
  "plan": "week",
  "pageId": "existing-page-id",
  "status": "paid_pending_review",
  "provider": "x402",
  "durationDays": 7,
  "featuredSlug": "my-featured-page",
  "approvalRequired": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/markdown-page-featured-purchase-weekly-slot-9011f649/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from markdown.page](https://www.zero.xyz/host/markdown.page/llms.txt)
