What are REST API Tools?
REST API tools let your agent:- Call external APIs - Integrate with any REST API
- Load from Postman - Use existing Postman collections
- Automatic conversion - Each API endpoint becomes a tool
- No code needed - Just provide the Postman collection
Loading from Postman Collections
Basic Usage
Postman Collection Format
Your Postman collection should follow the standard format:Configuration
Base URL
Set the base URL for all API requests:Headers
Add authentication and custom headers:How It Works
- Load Collection - Reads Postman collection JSON
- Convert Endpoints - Each API endpoint becomes a tool
- Agent Uses Tools - Agent can call APIs based on user requests
- Return Results - API responses included in agent responses
Example Use Cases
Customer Data API
E-commerce API
Best Practices
Collection Organization
- Group related endpoints - Organize by functionality
- Clear endpoint names - Descriptive names help the agent
- Document parameters - Include parameter descriptions in Postman
Security
- Use environment variables - Don’t hardcode API keys
- Secure headers - Pass authentication via headers
- Validate responses - Handle API errors gracefully
Next Steps
- Function Calling → - Understand how it works
- Custom Functions → - Create your own tools
- Toolkits → - Organize your tools
- Python SDK Examples → - See complete examples

