/v1/user_stories
A writer's published stories
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/wattpad-api/v1/user_stories" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/wattpad-api/v1/user_stories", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/wattpad-api/v1/user_stories");
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/user_stories",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"count": 4,
"source": "Wattpad",
"stories": [
{
"id": "408682906",
"url": "https://www.wattpad.com/story/408682906",
"tags": [
"contest",
"giveaway",
"prizes",
"sweepstake",
"thingsbook",
"wattpad"
],
"cover": "https://img.wattpad.com/cover/408682906-256-k481818.jpg",
"parts": 10,
"reads": 218359,
"title": "Official ThingsBook x Wattpad Sweepstake",
"votes": 1782,
"author": {
"name": "Wattpad",
"username": "Wattpad",
"followers": 79464806
},
"mature": false,
"comments": 2661,
"language": "English",
"completed": false,
"created_at": "2026-03-06T22:18:32Z",
"description": "Calling all readers, writers and story lovers! Get ready for the largest Sweepstakes to ever take place on Wattpad. To celebrate the launch of our sister app, ThingsBook, we're inviting the Wattpad community to participate in the ultimate Dream Getaway Sweepstakes - with 30,000 Coins up for grabs every week, and over 900 winners across the community. Excited? Keep reading to learn more and find out how to enter.",
"modified_at": "2026-05-25T16:50:38Z"
},
{
"id": "9341306",
"url": "https://www.wattpad.com/story/9341306",
"tags": [
"awards",
"category",
"celebrate",
"community",
"contests",
"holidays",
"news",
"newsandupdates",
"prizes",
"random",
"stories",
"storyrankings",
"updates",
"wattpad",
"wattpad101",
"wattpadders",
"wattpadhq",
"wattpadnews"
],
"cover": "https://img.wattpad.com/cover/9341306-256-k306542.jpg",
"parts": 101,
"reads": 58220749,
"title": "News & Updates",
"votes": 423598,
"author": {
"name": "Wattpad",
"username": "Wattpad",
"followers": 79464806
},
"mature": false,
"comments": 530428,
"language": "English",
"completed": false,
"created_at": "2013-10-24T21:22:14Z",
"description": "Stay connected to all things Wattpad by adding this story to your l
…