Advice Slip
Random one-line life advice, served as JSON
The Advice Slip API dishes out random pieces of advice, one slip at a time. Call /advice and you get a JSON object with an id and a single line of (often tongue-in-cheek) wisdom. No key, no signup, just advice.
GET https://api.adviceslip.com/advice
{
"slip": {
"id": 108,
"advice": "Don't ever name files or folders using the word \"Final\"."
}
}curl "https://api.adviceslip.com/advice"const res = await fetch("https://api.adviceslip.com/advice");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api.adviceslip.com/advice")
print(res.json())/advicePROBEDRandom one-line life advice, served as JSON
/advice?limit=5Paginated variant with limit parameter.
/advice/1Advice details by ID (example: 1).
/advice/%7Bslip_id%7D%7Bslip Id%7D — documented GET route.
/advice/search/spidersSearch by query parameters.
/advice/search/%7Bquery%7DSearch by query parameters.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
Advice Slip: common questions
Is Advice Slip free to use?
Yes — Advice Slip is a free fun API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Advice Slip need an API key?
No — Advice Slip needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Advice Slip from the browser?
Yes — Advice Slip returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is Advice Slip up right now?
As of our last scheduled check, Advice Slip is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.