WP OctoDocs
Websites

List the websites of the caller's workspace

GET
/v1/dashboard/websites

Paginated with page and per_page, sortable with sort_by. Each website carries its package and the result of its last update round.

AuthorizationBearer <token>

A workspace API key from Settings → API keys, sent as Authorization: Bearer <key>.

In: header

Response Body

application/json

application/json

curl -X GET "https://example.com/v1/dashboard/websites"
{  "data": [    {      "name": "string",      "url": "string",      "domain": "string",      "magic_login_url": "string",      "package": {        "name": "string"      },      "last_update_round": {        "status": "new",        "created_at": "2019-08-24T14:15:22Z"      }    }  ]}