W3cubDocs

/WordPress

rest_url( string $path = , string $scheme = ‘rest’ ): string

Retrieves the URL to a REST endpoint.

Description

Note: The returned URL is NOT escaped.

Parameters

$pathstringoptional
REST route.

Default:''

$schemestringoptional
Sanitization scheme. Default 'rest'.

Default:'rest'

Return

string Full URL to the endpoint.

Source

function rest_url( $path = '', $scheme = 'rest' ) {
	return get_rest_url( null, $path, $scheme );
}

Changelog

Version Description
4.4.0 Introduced.

© 2003–2024 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/rest_url