/v1/meta
Spec
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
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_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"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
}