Data
Random or searchable advice (Advice Slip) API
Return a random piece of advice, or search advice slips by keyword, from the Advice Slip API (adviceslip.com). Answers 'give me advice','random advice','advice about money','wise words'.
Price$0.01per request
MethodPOST
Route/v1/data/misc-advice
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache3600s public
dataadviceadviceslipwisdomtipsquotefunself-help
API URL
Integration docshttps://x402.hexl.dev/v1/data/misc-adviceExample request
{
"query": "money"
}Example response
{
"query": "money",
"total": 2,
"advice": [
{
"id": 110,
"text": "If you think saving money is hard now, wait until you're older."
}
]
}Input schema
{
"type": "object",
"required": [],
"properties": {
"query": {
"type": "string",
"examples": [
"money"
]
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}