Marketplace
No threads yet
Live

get_story_details

fanfiction.net

Returns full story metadata from https://fanfiction.net by story ID, including author details, description, covers, fandoms, rating, counts, dates, status, and complete chapter listing.

Parameters1
Runs7
Updated1d ago
Failing7 runs · 71.4% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is get_story_details?

Returns full story metadata from https://fanfiction.net by story ID, including author details, description, covers, fandoms, rating, counts, dates, status, and complete chapter listing. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass story_id and get the result back without maintaining a scraper.

Response

{
  "title": "<string>",
  "words": 0,
  "author": {
    "name": "<string>",
    "author_id": 0,
    "profile_url": "<string>"
  },
  "genres": [
    "<string>"
  ],
  "rating": "<string>",
  "status": "<string>",
  "fandoms": [
    {
      "url": "<string>",
      "name": "<string>"
    }
  ],
  "follows": 0,
  "reviews": 0,
  "section": "<string>",
  "chapters": [
    {
      "url": "<string>",
      "title": "<string>",
      "number": 0
    }
  ],
  "language": "<string>",
  "story_id": 0,
  "favorites": 0,
  "story_url": "<string>",
  "characters": [
    "<string>"
  ],
  "updated_at": 0,
  "description": "<string>",
  "is_complete": true,
  "reviews_url": "<string>",
  "section_url": "<string>",
  "category_url": "<string>",
  "is_crossover": true,
  "published_at": 0,
  "raw_metadata": "<string>",
  "updated_date": "<string>",
  "chapters_count": 0,
  "genres_display": "<string>",
  "published_date": "<string>",
  "cover_image_url": "<string>",
  "cover_thumbnail_url": "<string>",
  "characters_and_pairings": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/6c143820-edc8-4d9e-a81c-a32603593197/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "6c143820-edc8-4d9e-a81c-a32603593197",
    "variables": {
        "story_id": 5782108
    }
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="6c143820-edc8-4d9e-a81c-a32603593197") — the "get_story_details" function, which returns full story metadata from https://fanfiction.net by story ID, including author details, description, covers, fandoms, rating, counts, dates, status, and complete chapter listing..

It takes story_id (int). Return the result as structured JSON.