Gifli API Docs
Api

List my GIFs

Paginated list of GIFs owned by the caller. With a bare app token it returns GIFs across all of the app's service accounts.

GET
/gifs/me

Authorization

AuthorizationBearer <token>

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

In: header

Query Parameters

page?integer

Page number (1-indexed).

limit?integer

Results per page.

Response Body

application/json

application/json

curl -X GET "https://example.com/gifs/me"
{  "items": [    {      "id": "string",      "name": "string",      "description": "string",      "url": "http://example.com",      "mimeType": "image/webp",      "sizeBytes": "204800",      "width": 0,      "height": 0,      "thumbhash": "string",      "userId": "string",      "createdAt": "2019-08-24T14:15:22Z",      "updatedAt": "2019-08-24T14:15:22Z"    }  ],  "total": 0,  "page": 0,  "limit": 0,  "pages": 0}
{  "error": "string"}