mirrored listing x402 eip155:8453

X Preflight: read a draft post against X's open-sourced ranking code

X Preflight: read a draft post against X's open-sourced ranking code. Returns what is already settled before you post, whether it enters the pool strangers are drawn from, how long it stays retrievable, which filters delete it, and which gates nobody can know in advance. Every claim cites a file and line in X's published source. Never writes the post. Nothing stored.

Do you run kevinhoff.com? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
10000 (raw units)
price
9
calls / 30d
3
unique payers
2026-09-14
updated

Provider

kevinhoff.com · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0x3A7292b88471691946D8D8856925e22246bed743",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "10000",
    "maxTimeoutSeconds": 300
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "body": {
          "text": "the draft post you are about to publish on x.com"
        },
        "bodyType": "json",
        "method": "POST",
        "type": "http"
      },
      "output": {
        "example": {
          "gates": [
            {
              "head": "It can be found by strangers.",
              "n": 1,
              "name": "On the list",
              "src": "phoenixRankAllCandidateProcessor.strato:446-451",
              "state": "go"
            }
          ],
          "model": {
            "built_for": "copy_link",
            "negative_risk": {
              "level": "low"
            },
            "survival": {
              "verdict": "clear"
            }
          },
          "structural": [
            {
              "detail": "An original or a quote is written to the index out-of-network readers are drawn from.",
              "fact": "enters the pool",
              "src": "phoenixRankAllCandidateProcessor.strato:446-451"
            }
          ]
        },
        "type": "json"
      }
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "additionalProperties": false,
          "properties": {
            "body": {
              "properties": {
                "all_video_over_10s": {
                  "description": "OPTIONAL, defaults to false. Whether EVERY attachment is video running longer than ten seconds. One photo or one short clip makes this false.",
                  "type": "boolean"
                },
                "brief": {
                  "description": "OPTIONAL, defaults to false. True returns the classification only and drops the prose, which is 78% of the generation. Answers in seconds instead of tens of seconds, same model and same price. Use it if your client has a short timeout.",
                  "type": "boolean"
                },
                "followers_under_1000": {
                  "description": "OPTIONAL, defaults to false. Whether the author is under the small-account cap that the one per-batch lift applies to.",
                  "type": "boolean"
                },
                "post_kind": {
                  "description": "OPTIONAL, defaults to original. A reply's parent is not in the text, so no tool can read this off the draft. Declare it only if it is not an original.",
                  "enum": [
                    "original",
                    "reply",
                    "quote",
                    "repost"
                  ],
                  "type": "string"
                },
                "reader_follows_back": {
                  "description": "OPTIONAL, defaults to false. Whether the reader follows the author back. Decides in-network versus out-of-network, which changes the reply chain.",
                  "type": "boolean"
                },
                "text": {
                  "description": "The draft post. Never rewritten, never stored.",
                  "type": "string"
                }
              },
              "required": [
                "text"
              ]
            },
            "bodyType": {
              "enum": [
                "json",
                "form-data",
                "text"
              ],
              "type": "string"
            },
            "method": {
              "enum": [
                "POST"
              ],
              "type": "string"
            },
            "type": {
              "const": "http",
              "type": "string"
            }
          },
          "required": [
            "type",
            "method",
            "bodyType",
            "body"
          ],
          "type": "object"
        },
        "output": {
          "properties": {
            "example": {
              "properties": {
                "gates": {
                  "description": "The eight gates in the order X runs them, each with a state and the source line it is read from.",
                  "items": {
                    "properties": {
                      "head": {
                        "type": "string"
                      },
                      "n": {
                        "type": "number"
                      },
                      "name": {
                        "type": "string"
                      },
                      "src": {
                        "type": "string"
                      },
                      "state": {
                        "enum": [
                          "go",
                          "stop",
                          "open",
                          "call"
                        ],
                        "type": "string"
                      }
                    },
                    "required": [
                      "n",
                      "state",
                      "src"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "model": {
                  "description": "The paid half: the read of the draft itself.",
                  "type": "object"
                },
                "structural": {
                  "description": "Consequences that need no model: branches in X's published source.",
                  "items": {
                    "properties": {
                      "detail": {
                        "type": "string"
                      },
                      "fact": {
                        "type": "string"
                      },
                      "src": {
                        "type": "string"
                      }
                    },
                    "required": [
                      "fact",
                      "src"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                }
              },
              "required": [
                "gates",
                "structural",
                "model"
              ],
              "type": "object"
            },
            "type": {
              "type": "string"
            }
          },
          "required": [
            "type"
          ],
          "type": "object"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  }
}

Use it

curl

curl "https://kevinhoff.com/api/paid/grade"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://kevinhoff.com/api/paid/grade");
if (res.status === 402) {
  const { accepts } = await res.json();
  // pay one of accepts[] via an x402 client, then retry with the payment header
}

Python

import httpx
res = httpx.get("https://kevinhoff.com/api/paid/grade")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/7997.json, and this resource appears in /discovery/resources and /discovery/search.