Fetch Actor details
fetch-actor-detailsGet detailed information about an Actor by its ID or full name (format: "username/name", e.g., "apify/rag-web-browser").
Requires the exact ID or full name — do not construct a plausible-looking name and call this tool with it.
Use 'output' parameter with boolean flags to control returned information:
Default: All fields true except mcpTools
Selective: Set desired fields to true (e.g., output: { inputSchema: true })
Common patterns: inputSchema only, description + readme, mcpTools for MCP Actors
The 'readme' field returns the summary when available, full README otherwise. Use when querying Actor details, documentation, input requirements, or MCP tools.
EXAMPLES:
What does apify/rag-web-browser do?
What is the input schema for apify/web-scraper?
What tools does apify/actors-mcp-server provide?
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| actor | Yes | Actor ID or full name in the format "username/name", e.g., "apify/rag-web-browser". | |
| output | No | Specify which information to include in the response to save tokens. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| readme | No | Actor README summary when available, otherwise the full README documentation. | |
| mcpTools | No | Markdown listing of MCP tools exposed by the Actor (only present when `output.mcpTools` is requested). | |
| actorInfo | No | ||
| inputSchema | No | Actor input schema. | |
| outputSchema | No | Output schema inferred from successful runs. |