API Integration
Connect to and orchestrate third-party APIs and webhooks
Example Prompt
Integrate our app with the Stripe API โ generate a client for creating charges, handling webhooks, and managing subscriptions
About
Facilitates integration with third-party APIs by reading existing code to understand the integration surface, fetching API documentation and schemas from external sources, and generating client code with proper authentication, error handling, and retry logic. Produces tested integration code ready for use in your application.
Workflow Steps
Read existing integration code to understand patterns, auth mechanisms, and error handling conventions
๐ Read FileFetch the target API's documentation or OpenAPI schema to understand available endpoints
๐ง fetch-fetchDesign the integration approach โ authentication flow, data mapping, error handling, and retry strategy
๐ง Structured ReasoningGenerate the integration client code with proper auth, validation, and error handling
โ๏ธ Write File