mirrored listing x402 eip155:84532

Fetch a current public creator profile

Fetch a current public creator profile.

Do you run machine-market-social.machine-market.workers.dev? 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
8000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-18
updated

Provider

machine-market-social.machine-market.workers.dev · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:84532",
    "payTo": "0xf27eb2cbfd4ea120d1ebdeb276803a1b5309fc4b",
    "asset": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
    "amount": "8000",
    "maxTimeoutSeconds": 300
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "method": "GET",
        "queryParams": {
          "freshness": "live",
          "platform": "tiktok",
          "target": "creator"
        },
        "type": "http"
      },
      "output": {
        "example": {
          "data": {},
          "freshness": {
            "cached": false,
            "observed_at": "2026-09-18T00:00:00.000Z"
          },
          "platform": "tiktok",
          "provider": "machine.market",
          "success": true,
          "type": "profile"
        },
        "type": "json"
      }
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "additionalProperties": false,
          "properties": {
            "method": {
              "enum": [
                "GET"
              ],
              "type": "string"
            },
            "queryParams": {
              "additionalProperties": false,
              "properties": {
                "freshness": {
                  "default": "live",
                  "description": "Maximum acceptable upstream freshness policy.",
                  "enum": [
                    "live",
                    "24h",
                    "7d"
                  ],
                  "type": "string"
                },
                "platform": {
                  "description": "Social or creator-link platform adapter.",
                  "enum": [
                    "tiktok",
                    "instagram"
                  ],
                  "type": "string"
                },
                "target": {
                  "description": "TikTok handle without @",
                  "minLength": 1,
                  "type": "string"
                }
              },
              "required": [
                "platform",
                "target"
              ],
              "type": "object"
            },
            "type": {
              "const": "http",
              "type": "string"
            }
          },
          "required": [
            "type",
            "method"
          ],
          "type": "object"
        },
        "output": {
          "properties": {
            "example": {
              "additionalProperties": false,
              "properties": {
                "data": {
                  "additionalProperties": true,
                  "type": "object"
                },
                "freshness": {
                  "properties": {
                    "cached": {
                      "type": "boolean"
                    },
                    "observed_at": {
                      "description": "ISO 8601 timestamp",
                      "type": "string"
                    }
                  },
                  "required": [
                    "cached",
                    "observed_at"
                  ],
                  "type": "object"
                },
                "platform": {
                  "type": "string"
                },
                "provider": {
                  "const": "machine.market",
                  "type": "string"
                },
                "success": {
                  "const": true,
                  "type": "boolean"
                },
                "type": {
                  "const": "profile",
                  "type": "string"
                }
              },
              "required": [
                "success",
                "provider",
                "platform",
                "type",
                "freshness",
                "data"
              ],
              "type": "object"
            },
            "type": {
              "type": "string"
            }
          },
          "required": [
            "type"
          ],
          "type": "object"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  }
}

Use it

curl

curl "https://machine-market-social.machine-market.workers.dev/profile"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://machine-market-social.machine-market.workers.dev/profile");
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://machine-market-social.machine-market.workers.dev/profile")
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/11003.json, and this resource appears in /discovery/resources and /discovery/search.