Get Torrent Details
transmission_get_torrentRetrieve detailed information about one or more torrents by ID, including status, progress, files, trackers, and peer connections.
Instructions
Get detailed information about specific torrent(s) by ID.
This tool retrieves comprehensive information about one or more torrents, including status, progress, files, trackers, and peer information.
Args:
ids (number | number[] | 'all'): Torrent ID(s) - single ID, array of IDs, or 'all' for all torrents
response_format ('markdown' | 'json'): Output format (default: 'markdown')
Returns: Detailed torrent information including:
Name, status, and progress
Size and download/upload statistics
Speed and ETA
Peer connections
Labels and error messages (if any)
Examples:
Use when: "Show me details for torrent ID 5" -> params with ids=5
Use when: "Get info for torrents 1, 2, and 3" -> params with ids=[1, 2, 3]
Use when: "Show all torrent details" -> params with ids='all'
Error Handling:
Returns "No torrents found matching the specified IDs" if IDs don't exist
Returns error message if connection fails
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ids | Yes | Torrent ID(s) to operate on - can be a single ID, array of IDs, or 'all' | |
| response_format | No | Output format: 'markdown' for human-readable or 'json' for machine-readable | markdown |