Wemob
API reference

Apps

Endpoints for listing, reading, updating, and deleting your projects.

“Apps” in the Wemob API are what you see as projects in the dashboard — websites, stores, and apps you've built. This page lists the endpoints for working with them.

List apps#

Returns every project in your account, newest first.

MethodPathReturns
GET/v2/appsAn array of app objects

Get an app#

Returns the details of a single project.

MethodPathReturns
GET/v2/apps/{appId}The app object with files, settings, and metadata

Update an app#

Changes a project's name, slug, or settings.

MethodPathBody
PUT/v2/apps/{appId}{ name, slug, settings }
Renaming changes the URL
Changing the slug changes the project's free .wemob.app URL. The old URL will redirect for a while so existing links keep working.

Delete an app#

Permanently deletes a project. The live site stops serving, the files are removed, and any custom domains attached to the project are released.

MethodPathReturns
DELETE/v2/apps/{appId}A success confirmation
There's no undo
Deleted apps can't be recovered. Make sure you have an exported copy if you might need the code later.
Last updated · April 11, 2026