# CodeCloud > CodeCloud is an API for running AI coding agents. Send a prompt and a GitHub repo, get back a pull request. It integrates with Linear for automated issue-to-PR workflows. CodeCloud provides a REST API that lets you programmatically run AI coding agents against GitHub repositories. The agent clones your repo into a secure sandbox, makes changes based on your prompt, and can automatically create a pull request with the results. ## Key Features - **API-first**: Simple REST API to trigger agent runs - **GitHub Integration**: Connects via GitHub App for secure repo access and PR creation - **Linear Integration**: Assign issues to @codecloud in Linear and get automated PRs - **Multiple LLM Providers**: Supports Anthropic, OpenAI, Google, and others (bring your own API keys) - **Secure Sandboxes**: Code runs in isolated E2B sandboxes - **Webhooks**: Get notified when agent runs complete ## Use Cases - Automate bug fixes from issue trackers - Generate implementation plans from tickets - Batch process backlog items - CI/CD integration for automated code changes ## Documentation - [API Documentation](https://codecloud.dev/docs): Full API reference with authentication, endpoints, and examples - [Pricing](https://codecloud.dev/pricing): Plans and usage limits ## Blog - [Linear Integration](https://codecloud.dev/blog/linear-integration): Native Linear integration for issue-to-PR workflows - [Introducing CodeCloud](https://codecloud.dev/blog/introducing-codecloud): Overview and getting started - [Implementation Plans from Tickets](https://codecloud.dev/blog/implementation-plans-from-tickets): Using plan mode - [Automate Your Backlog with n8n](https://codecloud.dev/blog/automate-backlog-n8n-codecloud): Integration tutorial - [The Ralph Wiggum Technique](https://codecloud.dev/blog/ralph-wiggum-technique-opencode): Prompt engineering for agents ## API Quick Start ```bash curl -X POST https://codecloud.dev/api/v1/agents \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "repo": "owner/repo-name", "prompt": "Fix the bug in the login function", "auto_create_pr": true }' ``` ## Optional - [Terms of Service](https://codecloud.dev/terms) - [Privacy Policy](https://codecloud.dev/privacy)