{"openapi":"3.1.0","info":{"title":"publish.new","version":"1.0.0","description":"Digital artifact marketplace with x402 micropayments. Publish, discover, and buy text or file artifacts priced in dollars."},"x-service-info":{"categories":["marketplace","payments","publishing"],"docs":{"homepage":"https://publish.new","apiReference":"https://publish.new/PROMPT.md","llms":"https://publish.new/llms.txt"}},"paths":{"/api/artifact":{"get":{"summary":"List artifacts","parameters":[{"name":"page","in":"query","schema":{"type":"integer","default":1}},{"name":"limit","in":"query","schema":{"type":"integer","default":20,"maximum":100}},{"name":"search","in":"query","schema":{"type":"string"}}],"responses":{"200":{"description":"Paginated list of artifacts"}}}},"/api/artifact/upload":{"post":{"summary":"Create an artifact with file upload","requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"type":"object","required":["price","walletAddress"],"properties":{"title":{"type":"string"},"description":{"type":"string"},"content":{"type":"string"},"file":{"type":"string","format":"binary"},"previewImage":{"type":"string","format":"binary"},"price":{"type":"string"},"walletAddress":{"type":"string","pattern":"^0x[a-fA-F0-9]{40}$"}}}}}},"responses":{"201":{"description":"Artifact created"},"400":{"description":"Invalid input"}}}},"/api/artifact/{slug}":{"get":{"summary":"Get artifact metadata","parameters":[{"name":"slug","in":"path","required":true,"schema":{"type":"string","pattern":"^[a-z0-9-]+$"}}],"responses":{"200":{"description":"Artifact metadata"},"404":{"description":"Not found"}}},"put":{"summary":"Update an artifact","parameters":[{"name":"slug","in":"path","required":true,"schema":{"type":"string","pattern":"^[a-z0-9-]+$"}}],"responses":{"200":{"description":"Artifact updated"},"401":{"description":"Authentication required"},"404":{"description":"Not found"}}},"delete":{"summary":"Delete an artifact","parameters":[{"name":"slug","in":"path","required":true,"schema":{"type":"string","pattern":"^[a-z0-9-]+$"}}],"responses":{"200":{"description":"Artifact deleted"},"401":{"description":"Authentication required"},"404":{"description":"Not found"}}}},"/api/artifact/{slug}/content":{"get":{"summary":"Buy and download artifact content","x-payment-info":{"currency":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","description":"Pay per-artifact price to unlock content. Check /api/artifact/{slug}/price for the amount.","intent":"charge","method":"tempo"},"parameters":[{"name":"slug","in":"path","required":true,"schema":{"type":"string","pattern":"^[a-z0-9-]+$"}},{"name":"chain","in":"query","schema":{"type":"string","enum":["base","tempo","mainnet"]}},{"name":"currency","in":"query","description":"ERC-20 contract address","schema":{"type":"string"}}],"responses":{"200":{"description":"Content delivered"},"402":{"description":"Payment Required"},"404":{"description":"Not found"}}}},"/api/artifact/{slug}/price":{"get":{"summary":"Get artifact price","parameters":[{"name":"slug","in":"path","required":true,"schema":{"type":"string","pattern":"^[a-z0-9-]+$"}}],"responses":{"200":{"description":"Price in USD"},"404":{"description":"Not found"}}}},"/api/artifact/{slug}/reviews":{"get":{"summary":"List artifact reviews","parameters":[{"name":"slug","in":"path","required":true,"schema":{"type":"string","pattern":"^[a-z0-9-]+$"}}],"responses":{"200":{"description":"List of reviews with stats"}}},"post":{"summary":"Submit a review","parameters":[{"name":"slug","in":"path","required":true,"schema":{"type":"string","pattern":"^[a-z0-9-]+$"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["rating"],"properties":{"rating":{"type":"integer","minimum":1,"maximum":5},"comment":{"type":"string"}}}}}},"responses":{"201":{"description":"Review submitted"},"401":{"description":"Authentication required"},"403":{"description":"Purchase required to review"}}}}}}