How to delete an Alchemy app
Last updated: August 20, 2026
Two options: Dashboard (no code) or the App Management API.
⚠Deletion is permanent. The app and all its associated data and configuration will be unrecoverable once confirmed, and all API keys tied to the app are invalidated immediately.
Option 1 - Dashboard
1 Go to your Alchemy Dashboard and click the Apps tab in the left panel.
1.2 Click the app you want to delete.
1.3 At the top of the app page, click the Settings tab.
1.4 Scroll to the Delete App section and click Delete.
1.5 Re-enter the app name to confirm, then submit. The app is deleted immediately.
Option 2 - API
Create an access key with App Management write permissions:
In the Dashboard, open the Security tab and create a new access key with Read & Write for App Management.
Delete the app by ID:
Use the Admin API quickstart setup, then run:
curl -X DELETE "https://admin-api.alchemy.com/v1/apps/$APP_ID" \
-H "Authorization: Bearer $ALCHEMY_ADMIN_ACCESS_KEY"