List Models
List all available OpenAI models with their details and capabilities.
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.
- Use Robomotion AI Credits - Use Robomotion credits instead of your own API key.
Options
This node has no options.
Outputs
- Models - Array of available OpenAI models with their details (id, owner, created date, etc.).
How It Works
Retrieves the list of available models:
- Validates connection
- Requests model list from OpenAI
- Returns array of model objects
Usage Example
Output:
- Models: {
data: [
{
id: "gpt-5",
object: "model",
created: 1234567890,
owned_by: "openai"
},
{
id: "gpt-4o",
object: "model",
created: 1234567890,
owned_by: "openai"
},
...
]
}
Use Cases
- Model Discovery: Find available models for your account
- Capability Check: Verify if specific models are available
- Monitoring: Track new model releases
- Dynamic Selection: Programmatically choose models based on availability
Tips
- Models list includes text, embedding, image, and audio models
- Model availability depends on your API access level
- Use with Retrieve Model for detailed model information