Advice Slip

Random one-line life advice, served as JSON

😄 FunUNMONITOREDchecked 14 min ago
AUTH NONECORS AGENT ?HTTPS COMMERCIAL ?

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.

HOW IT'S SCORED ⓘ
Status badge · for your READMEshipapis health badge: — · unmonitored
Uptime history
—%90 days
—%30 days
P50 · ms
P95 · ms
operationalpartialdownno data
Live response samplecaptured by our last successful check
GET https://api.adviceslip.com/advice

{
  "slip": {
    "id": 108,
    "advice": "Don't ever name files or folders using the word \"Final\"."
  }
}
Call itcurl · fetch · python
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())
Endpoints · 6On scheduleFULL DOCS ↗
First rollup pending — GET /advice has been probed
GET/advicePROBED

Random one-line life advice, served as JSON

GET/advice?limit=5

Paginated variant with limit parameter.

GET/advice/1

Advice details by ID (example: 1).

GET/advice/%7Bslip_id%7D

%7Bslip Id%7D — documented GET route.

GET/advice/search/spiders

Search by query parameters.

GET/advice/search/%7Bquery%7D

Search by query parameters.

Machine-readable spec

We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.

Response-shape history

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.