At a glance
- Availability: Experimental (how to enable).
- Auth: API key.
- Connection: The key comes from
RENDER_API_KEY. - Docs: https://api-docs.render.com/reference/introduction
Credentials
Set these per environment. See Connect an integration.Setup
- Sign in to Render: Go to https://dashboard.render.com and sign in (the free tier with one web service is sufficient for testing).
- Create an API key: Open Account Settings > API Keys (https://dashboard.render.com/settings#api-keys) and create a key.
- Set the environment variable: Add the key to your .env as RENDER_API_KEY=…
- Verify access: Run List Services and note the srv-… IDs for use with the other tools.
- Keys are sent as ‘Authorization: Bearer <key>’
- List responses are arrays of wrapper objects ({ service, cursor } / { deploy, cursor }); pass the last cursor back to paginate
- API keys grant the full permissions of your user account - store them securely
Tools
Example prompts
- List the most recent Render deploys for my service and summarize their statuses.
- Trigger a new deploy of my Render service with a cleared build cache.