Custom API Integration
Connect to any REST API to extend your app's capabilities.
What You Can Integrate
Any public or private API that uses REST, including:
- • Weather services (OpenWeatherMap)
- • AI APIs (OpenAI, Anthropic)
- • Email services (SendGrid, Resend)
- • SMS services (Twilio)
- • Analytics (Mixpanel, Amplitude)
- • CRM systems (HubSpot, Salesforce)
- • Social media APIs
- • Your own backend APIs
How to Integrate an API
When asking AI to integrate an API, provide:
- Base URL: The API's root endpoint
- Endpoints: Specific paths you need (GET /users, POST /messages)
- Authentication: API key, Bearer token, or OAuth method
- Headers: Content-Type, custom headers
- Example responses: Sample JSON to help AI understand the structure
Example Prompt
Integrate the OpenWeatherMap API.
Base URL: https://api.openweathermap.org/data/2.5
Auth: API key as query param "appid"
Endpoint: GET /weather?q={city}&units=metric
Create a weather widget that shows current temperature.