# wordpress-seo/28.4/src/routes/endpoint/endpoint-interface.php

Yoast SEO – Advanced SEO with real-time guidance and built-in AI, version 28.4. 35 lines.

- Page: https://pluginprobe.com/plugins/wordpress-seo/28.4/code/src/routes/endpoint/endpoint-interface.php
- Raw: https://pluginprobe.com/plugins/wordpress-seo/28.4/raw/src/routes/endpoint/endpoint-interface.php
- Modified: 2026-03-31T11:40:40+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/wordpress-seo/28.4/code/src/routes/endpoint/endpoint-interface.php#L10-L20`.

```php
<?php

namespace Yoast\WP\SEO\Routes\Endpoint;

interface Endpoint_Interface {

	/**
	 * Gets the name.
	 *
	 * @return string
	 */
	public function get_name(): string;

	/**
	 * Gets the namespace.
	 *
	 * @return string
	 */
	public function get_namespace(): string;

	/**
	 * Gets the route.
	 *
	 * @return string
	 */
	public function get_route(): string;

	/**
	 * Gets the URL.
	 *
	 * @return string
	 */
	public function get_url(): string;
}

```
