# wp-parsely/3.7.1/src/RemoteAPI/class-related-api.php

Parse.ly, version 3.7.1. 33 lines.

- Page: https://pluginprobe.com/plugins/wp-parsely/3.7.1/code/src/RemoteAPI/class-related-api.php
- Raw: https://pluginprobe.com/plugins/wp-parsely/3.7.1/raw/src/RemoteAPI/class-related-api.php
- Modified: 2023-02-27T12:36:48+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.7.1/code/src/RemoteAPI/class-related-api.php#L10-L20`.

```php
<?php
/**
 * Class for Related API (`/related`).
 *
 * @package Parsely
 * @since   3.2.0
 */

declare(strict_types=1);

namespace Parsely\RemoteAPI;

use Parsely\Parsely;

/**
 * Class for Related API (`/related`).
 *
 * @since 3.2.0
 */
class Related_API extends Remote_API_Base {
	protected const ENDPOINT     = '/related';
	protected const QUERY_FILTER = 'wp_parsely_related_endpoint_args';

	/**
	 * Indicates whether the endpoint is public or protected behind permissions.
	 *
	 * @since 3.7.0
	 *
	 * @var bool
	 */
	protected $is_public_endpoint = true;
}

```
