Import and use the Buena.ai API Postman collection
https://api.buena.ai/postman/collection.json
base_url
https://api.buena.ai/api/v2
api_key
your-api-key-here
{ "base_url": "https://api.buena.ai/api/v2", "api_key": "your-api-key-here", "user_id": "user_123", "campaign_id": "camp_456", "lead_id": "lead_789" }
# Test your API key GET {{base_url}}/health Headers: x-api-key: {{api_key}}
# Create a new lead POST {{base_url}}/leads Headers: x-api-key: {{api_key}} Content-Type: application/json Body: { "name": "John Doe", "email": "john@example.com", "company": "Example Corp", "title": "CEO" }
# Schedule a LinkedIn action POST {{base_url}}/linkedin/schedule-action Headers: x-api-key: {{api_key}} Content-Type: application/json Body: { "prospect_id": "prospect_123", "action_type": "connect", "message": "Hi {{name}}, I'd love to connect!" }