zerochan_get_entry
Retrieve detailed metadata for a ZeroChan anime image post using its numeric ID, including tags, image URLs, dimensions, and associated categories.
Instructions
Retrieve detailed information about a single Zerochan entry by its numeric ID.
Returns full metadata including all tags, image URLs (full/medium/small),
source, dimensions, favorites, and associated anime/manga/game categories.
Args:
params (GetEntryInput): Input parameters including:
- username (str): Your Zerochan username (required)
- entry_id (int): Numeric ID of the Zerochan post (e.g. 3793685)
- response_format (ResponseFormat): 'markdown' or 'json' (default: 'markdown')
Returns:
str: Detailed entry data in the requested format.
Markdown: formatted card with all metadata, tag list, and image URLs.
JSON: complete raw API response with all available fields.
Schema (JSON):
{
"id": int,
"primary": str, # Primary/main tag for this image
"tags": list[str], # All associated tags
"width": int,
"height": int,
"fav": int, # Favorite/popularity count
"source": str, # Original source URL if available
"full": str, # Direct URL to full resolution image
"medium": str, # Medium preview URL
"small": str, # Small thumbnail URL
"anime": str | null, # Associated anime title if any
"manga": str | null,
"game": str | null
}Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |