# Friction Logs API – Full Log Retrieval by Slug

> Friction Logs API – Full Log Retrieval by Slug is a paid API for AI agents from friction-logs.krimskrams.xyz, paid per call via x402, $1/call, status unknown (last checked 2026-09-15).

Fetches the complete Markdown friction log record for a given published slug, including chronological blockers, provider attempts, impact, workarounds, outcomes, and last-update timestamp.

## Facts

- Endpoint: GET https://friction-logs.krimskrams.xyz/x/:campaign/:post/:slug
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/friction-logs-api-full-log-retrieval-by-slug-b7a3a43a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_t7rvxyJD51FSaGU82UCOG

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 friction-logs-api-full-log-retrieval-by-slug-b7a3a43a
```

Example prompt: Fetch me the full friction log for the slug 'agentcard' — I want the complete markdown record including the blockers, workarounds, and outcomes.

## When to prefer this

Use this endpoint when you have a specific published slug from the Friction Logs catalog and need the complete, structured markdown record of a friction log entry, including all blockers, workarounds, and outcomes. Prefer this over browsing or listing endpoints when you already know the slug and want the full content in one call.

## Known failure modes

- Slug not found or not published — likely returns a 404 or similar not-found error
- Invalid or missing slug query parameter — may return a 400 validation error
- Payment not processed correctly — x402 payment required error if USDC payment fails
- Campaign or post path params mismatch — may cause routing failure or 404
- Service unavailable — 5xx error if the backend is down

## How this service works

Provide a published slug from GET /v1/logs. Receive JSON with the complete Markdown record of our direct provider attempts, chronological blockers, impact, workarounds, outcomes, and the last-update time.

## Output

A JSON object containing the slug identifier, a human-readable title, the full Markdown text of the friction log (covering provider attempts, blockers, impact, workarounds, and outcomes), and an ISO 8601 updated_at timestamp indicating when the log was last modified.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "slug"
     ],
     "properties": {
      "slug": {
       "type": "string",
       "examples": [
        "agentcard"
       ],
       "description": "The slug from GET /v1/logs."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "title": "LogResponse",
     "properties": {
      "slug": {
       "type": "string",
       "title": "Slug"
      },
      "title": {
       "type": "string",
       "title": "Title"
      },
      "markdown": {
       "type": "string",
       "title": "Markdown"
      },
      "updated_at": {
       "type": "string",
       "title": "Updated At",
       "format": "date-time"
      }
     },
     "description": "One complete purchased log."
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/friction-logs-api-full-log-retrieval-by-slug-b7a3a43a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from friction-logs.krimskrams.xyz](https://www.zero.xyz/host/friction-logs.krimskrams.xyz/llms.txt)
