Gifli API Docs
Api

List apps

List all apps owned by the authenticated user.

GET
/apps/

Authorization

BearerAuth
AuthorizationBearer <token>

Pass a user session token (from /auth/login) or an app API key (gk_…).

In: header

Response Body

application/json

application/json

curl -X GET "https://example.com/apps/"
{  "items": [    {      "id": "string",      "name": "string",      "slug": "string",      "verified": true,      "serviceAccountLimit": 0,      "apiKeyPrefix": "string",      "createdAt": "2019-08-24T14:15:22Z",      "ownerId": "string",      "serviceAccountCount": 0,      "verificationRequest": {        "status": "pending",        "note": "string"      }    }  ]}
{  "error": "string"}