Marketplace
No threads yet
Live

get_author_profile

fanfiction.net

Returns an author profile from https://fanfiction.net with display name, join and update dates, bio, profile counts, feed URL, and complete published-story metadata.

Parameters1
Runs5
Updated5h ago
Degraded5 runs · 80% 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_author_profile?

Returns an author profile from https://fanfiction.net with display name, join and update dates, bio, profile counts, feed URL, and complete published-story metadata. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass author_id and get the result back without maintaining a scraper.

Response

{
  "bio": "<string>",
  "stories": [
    {
      "title": "<string>",
      "words": 0,
      "genres": [
        "<string>"
      ],
      "rating": "<string>",
      "status": "<string>",
      "fandoms": [
        "<string>"
      ],
      "follows": 0,
      "reviews": 0,
      "chapters": 0,
      "language": "<string>",
      "story_id": 0,
      "favorites": 0,
      "story_url": "<string>",
      "characters": [
        "<string>"
      ],
      "updated_at": 0,
      "description": "<string>",
      "is_complete": true,
      "reviews_url": "<string>",
      "is_crossover": true,
      "published_at": 0,
      "raw_metadata": "<string>",
      "updated_date": "<string>",
      "genres_display": "<string>",
      "published_date": "<string>",
      "latest_chapter_url": "<string>",
      "cover_thumbnail_url": "<string>",
      "characters_and_pairings": "<string>"
    }
  ],
  "feed_url": "<string>",
  "author_id": 0,
  "joined_at": 0,
  "joined_date": "<string>",
  "profile_url": "<string>",
  "display_name": "<string>",
  "profile_updated_at": 0,
  "publication_summary": "<string>",
  "favorite_story_count": 0,
  "profile_updated_date": "<string>",
  "favorite_author_count": 0,
  "published_story_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/4872c746-9bed-4238-bca3-b2e68ed3f0b2/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "4872c746-9bed-4238-bca3-b2e68ed3f0b2",
    "variables": {
        "author_id": 2269863
    }
}'

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="4872c746-9bed-4238-bca3-b2e68ed3f0b2") — the "get_author_profile" function, which returns an author profile from https://fanfiction.net with display name, join and update dates, bio, profile counts, feed URL, and complete published-story metadata..

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