Retrieve Model
Retrieve detailed information about a specific OpenAI model including its capabilities and specifications.
Common Properties
- Name - The custom name of the node.
- Color - The custom color of the node.
- Delay Before (sec) - Waits in seconds before executing the node.
- Delay After (sec) - Waits in seconds after executing node.
- Continue On Error - Automation will continue regardless of any error. Default: false.
Inputs
- Connection Id - Connection identifier from Connect node.
- Model ID - Specific model ID to retrieve information for (e.g., "gpt-5-mini", "gpt-4o").
- Use Robomotion AI Credits - Use Robomotion credits instead of your own API key.
Options
This node has no options.
Outputs
- Model Info - Detailed information object about the specified model.
How It Works
Retrieves information about a specific model:
- Validates connection and model ID
- Requests model details from OpenAI
- Returns model information object
Usage Example
Input:
- Model ID: "gpt-5-mini"
Output:
- Model Info: {
id: "gpt-5-mini",
object: "model",
created: 1234567890,
owned_by: "openai"
}
Use Cases
- Model Validation: Check if a model exists before using it
- Capability Discovery: Learn about model specifications
- Version Tracking: Monitor model versions and updates
Tips
- Use List Models first to discover available model IDs
- Model info includes creation date and ownership
Common Errors
"Model ID cannot be empty"
- Provide a valid model identifier