How to delete an app in the Alchemy dashboard

Last updated: August 25, 2026

You can delete an app from the dashboard one at a time, or use the Admin API if you need to remove several apps. Deleting an app is permanent and immediately invalidates all API keys tied to that app, so confirm nothing is still using those keys before you delete.

Delete an app from the dashboard

  1. Go to the Apps tab in the dashboard.

  2. Select the app you want to delete.

  3. Open Settings.

  4. Scroll to the bottom and click Delete app.

  5. Type the app name to confirm.

Delete apps with the Admin API

There's no bulk-delete option for removing all your apps at once. If you have many apps to remove, the Admin API is faster than deleting them one by one in the dashboard.

  1. Create an admin access key with App Management write permission.

  2. Call the delete endpoint for the app:

APP_ID="app_123"

curl -X DELETE "$ALCHEMY_ADMIN_BASE_URL/apps/$APP_ID" \
  -H "$ALCHEMY_ADMIN_AUTH_HEADER"

This permanently deletes the app and cannot be undone. To remove multiple apps, script over your list of app IDs and call this endpoint for each one.

Related docs