Next-best habit recommendations (USDC on Base)
Next-best habit recommendations (USDC on Base).
30000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-30
updated
Provider
api.mydev-tools.tech · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x9333e2b421A33428D71b7E03cc050C297d85BDA6",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "30000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"habits": [
{
"average_mood": 7.4,
"best_streak": 21,
"completion_rate": 0.72,
"current_streak": 9,
"energy_trend": "rising",
"name": "Morning run"
}
],
"horizon_days": 35
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"generated_for_habits": 1,
"recommendations": [
{
"action": "Hold the current cadence and schedule the weekend sessions",
"habit": "Morning run",
"priority": 0.82,
"rationale": "Streak is 9 of a 21 best; weekends are the only failure window."
}
]
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"description": "Caller-supplied habit summaries. Stateless: no identifier of any stored human user is accepted or resolved. Batch habits into one call — the price is per request, not per habit.",
"properties": {
"habits": {
"items": {
"properties": {
"average_mood": {
"maximum": 10,
"minimum": 1,
"type": "number"
},
"best_streak": {
"minimum": 0,
"type": "integer"
},
"completion_rate": {
"maximum": 1,
"minimum": 0,
"type": "number"
},
"current_streak": {
"minimum": 0,
"type": "integer"
},
"energy_trend": {
"enum": [
"rising",
"stable",
"falling"
],
"type": "string"
},
"mood_correlation": {
"maximum": 1,
"minimum": -1,
"type": "number"
},
"name": {
"type": "string"
},
"risk_score": {
"maximum": 1,
"minimum": 0,
"type": "number"
}
},
"required": [
"name",
"completion_rate",
"current_streak",
"best_streak"
],
"type": "object"
},
"maxItems": 25,
"minItems": 1,
"type": "array"
},
"horizon_days": {
"default": 35,
"maximum": 180,
"minimum": 7,
"type": "integer"
},
"locale": {
"type": "string"
},
"persona": {
"type": "string"
}
},
"required": [
"habits"
],
"type": "object"
},
"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": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.mydev-tools.tech/agent/v1/habits/recommend" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.mydev-tools.tech/agent/v1/habits/recommend");
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://api.mydev-tools.tech/agent/v1/habits/recommend")
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/14999.json, and this resource appears in /discovery/resources and /discovery/search.