/v1/meta
Spec
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/wattpad-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/wattpad-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/wattpad-api/v1/meta");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/wattpad-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"source": "Wattpad public API v3 (live)",
"service": "wattpad-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/user": "A writer's profile (username=Wattpad).",
"GET /v1/story": "One story in full (id=26327373).",
"GET /v1/search": "Search stories by keyword (q=dragon, limit).",
"GET /v1/user_stories": "A writer's published stories (username=Wattpad, limit)."
},
"description": "Live data from Wattpad, the world's largest storytelling social platform: search stories by keyword with read, vote and comment counts, part count, completion/maturity flags, tags and author; one story in full (description, cover, engagement, parts, language, tags, author with followers); a writer's profile (followers, following, stories published, bio, location); and a writer's published stories with stats. Live, no key, nothing stored. Distinct from mainstream social and book-catalog APIs — this is Wattpad's stories, their engagement and their authors.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-09T11:38:14.255Z",
"request_id": "00e2c98f-cb2e-45ff-84eb-49265d819a35"
},
"status": "ok",
"message": "Meta",
"success": true
}