# wp-parsely/3.6.0/src/RemoteAPI/class-analytics-posts-proxy.php

Parse.ly, version 3.6.0. 22 lines.

- Page: https://pluginprobe.com/plugins/wp-parsely/3.6.0/code/src/RemoteAPI/class-analytics-posts-proxy.php
- Raw: https://pluginprobe.com/plugins/wp-parsely/3.6.0/raw/src/RemoteAPI/class-analytics-posts-proxy.php
- Modified: 2022-07-05T14:41:00+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wp-parsely/3.6.0/code/src/RemoteAPI/class-analytics-posts-proxy.php#L10-L20`.

```php
<?php
/**
 * Remote API: `/analytics/posts` REST API Proxy class
 *
 * @package Parsely
 * @since   3.4.0
 */

declare(strict_types=1);

namespace Parsely\RemoteAPI;

/**
 * Proxy for the `/analytics/posts` endpoint.
 *
 * @since 3.4.0
 */
class Analytics_Posts_Proxy extends Base_Proxy {
	protected const ENDPOINT     = 'https://api.parsely.com/v2/analytics/posts';
	protected const QUERY_FILTER = 'wp_parsely_analytics_posts_endpoint_args';
}

```
