# wp-parsely/3.3.2/src/RemoteAPI/class-related-proxy.php

Parse.ly, version 3.3.2. 22 lines.

- Page: https://pluginprobe.com/plugins/wp-parsely/3.3.2/code/src/RemoteAPI/class-related-proxy.php
- Raw: https://pluginprobe.com/plugins/wp-parsely/3.3.2/raw/src/RemoteAPI/class-related-proxy.php
- Modified: 2022-05-02T10:45:56+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.3.2/code/src/RemoteAPI/class-related-proxy.php#L10-L20`.

```php
<?php
/**
 * Remote API: `/related` REST API Proxy class
 *
 * @package Parsely
 * @since   3.2.0
 */

declare(strict_types=1);

namespace Parsely\RemoteAPI;

/**
 * Proxy for the `/related` endpoint.
 *
 * @since 3.2.0
 */
class Related_Proxy extends Base_Proxy {
	protected const ENDPOINT     = 'https://api.parsely.com/v2/related';
	protected const QUERY_FILTER = 'wp_parsely_related_endpoint_args';
}

```
