Runs a structured synthetic-persona critique through Groq using the configured model
Runs a structured synthetic-persona critique through Groq using the configured model. The persona is treated as a hypothesis, never as a factual claim about every member of a demographic group; the response must state its assumptions and avoid sensitive-trait stereotyping. Input leaves this server for Groq and is not stored by HALOWERK. This is qualitative simulation, not user research, survey evidence or proof of conversion impact.
12000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-25
updated
Provider
buero.halowerk.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x2880EdfFF13100677Bf97A3CBdF3Bc34771C4E5E",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "12000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"content": "A repair subscription for electronics with a monthly fee and next-day pickup.",
"goal": "purchase consideration",
"language": "de",
"persona": "Gen-Z buyers in Berlin who compare climate claims and avoid long contracts"
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"content": {
"description": "Product concept, offer or copy to evaluate.",
"maxLength": 12000,
"minLength": 10,
"type": "string"
},
"goal": {
"default": "purchase consideration",
"maxLength": 500,
"minLength": 3,
"type": "string"
},
"language": {
"default": "de",
"maxLength": 20,
"minLength": 2,
"type": "string"
},
"persona": {
"description": "Specific target-persona hypothesis, for example Gen-Z buyers in Berlin who compare climate claims.",
"maxLength": 1000,
"minLength": 3,
"type": "string"
}
},
"required": [
"persona",
"content"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://buero.halowerk.com/v1/persona-eval" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://buero.halowerk.com/v1/persona-eval");
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://buero.halowerk.com/v1/persona-eval")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/15229.json, and this resource appears in /discovery/resources and /discovery/search.