Aller au contenu
GET /v1/user_stories

A writer's published stories

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/wattpad-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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_..."}
)

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "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
…