GET /insights
Get a list of stats/metrics/insights that the current user has access to.
Resource Information
Method | GET |
---|---|
URL | https://public-api.wordpress.com/rest/v1.1/insights |
Requires authentication? | Yes |
Query Parameters
Parameter | Type | Description |
---|---|---|
context | (string) |
|
http_envelope | (bool) |
|
pretty | (bool) |
|
meta | (string) | Optional. Loads data from the endpoints found in the 'meta' part of the response. Comma-separated list. Example: meta=site,likes |
fields | (string) | Optional. Returns specified fields only. Comma-separated list. Example: fields=ID,title |
callback | (string) | An optional JSONP callback function. |
Response Parameters
Parameter | Type | Description |
---|---|---|
ID | (int) | Unique ID for a WordPress.com Application |
name | (string) | Name of WordPress.com Application |
insights | (array) | List of metrics |
today | (array) | A list of today's metrics |
has_custom | (bool) | Does a report have custom (whitelisted) stats? |
Resource Errors
This endpoint does not return any errors.
Example
curl \ -H 'authorization: Bearer YOUR_API_TOKEN' \ 'https://public-api.wordpress.com/rest/v1.1/insights'
<?php $options = array ( 'http' => array ( 'ignore_errors' => true, 'header' => array ( 0 => 'authorization: Bearer YOUR_API_TOKEN', ), ), ); $context = stream_context_create( $options ); $response = file_get_contents( 'https://public-api.wordpress.com/rest/v1.1/insights', false, $context ); $response = json_decode( $response ); ?>