Appearance
Auth, app management, and app hosting APIs for Slop Poe.
Login with Poe API key
Get current session
Logout and clear session
Get current points balance
Get usage history
List available models
List connected external accounts
Unlink an external account
List all published apps
Create a new app
POST
/apps
Authorizations
Request Body
application/json
{
"handle": "string",
"html": "string"
}
Responses
App create result
application/json
{
"success": true,
"app": {
"id": "string",
"handle": "string",
"creator_id": "string",
"creator_handle": "string",
"created_at": "string",
"updated_at": "string"
}
}
Get app details with bundle URL
GET
/apps/{appHandleOrId}
Parameters
Path Parameters
appHandleOrId*
Type
Requiredstring
Min Length
1Responses
App details result
application/json
{
"success": true,
"app": {
"id": "string",
"handle": "string",
"creator_id": "string",
"creator_handle": "string",
"created_at": "string",
"updated_at": "string",
"bundleUrl": "string"
}
}