List all pages available on www.ft.com.
GET http://api.ft.com/site/v1/pages
Do not supply request parameters with this method.
Do not supply a request body with this method.
HTTP Status | Description | Notes |
---|---|---|
200 OK | The list of available pages from www.ft.com is returned |
|
If successful, this method returns a list of Page Resources in the standard response body.
{ “requestUrl”: string, “total”: integer, “pages”: [ { “id”: string, “title”: string, “apiUrl”: string, “webUrl”: string, }, … ] }
GET http://api.ft.com/site/v1/pages?apiKey=yourApiKey
{ “requestUrl”: “http://api.ft.com/site/v1/pages", “total”: 156, “pages”: [ { “id”: “4c499f12-4e94-11de-8d4c-00144feabdc0”, “title”: “Front page”, “apiUrl”: “http://api.ft.com/site/v1/pages/4c499f12-4e94-11de-8d4c-00144feabdc0", “webUrl”: “http://www.ft.com/home/uk", }, … ] }