# wordpress-seo/27.6/src/ai-http-request/application/response-parser-interface.php

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

- Page: https://pluginprobe.com/plugins/wordpress-seo/27.6/code/src/ai-http-request/application/response-parser-interface.php
- Raw: https://pluginprobe.com/plugins/wordpress-seo/27.6/raw/src/ai-http-request/application/response-parser-interface.php
- Modified: 2025-07-15T13:36:10+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/27.6/code/src/ai-http-request/application/response-parser-interface.php#L10-L20`.

```php
<?php

namespace Yoast\WP\SEO\AI_HTTP_Request\Application;

use Yoast\WP\SEO\AI_HTTP_Request\Domain\Response;

interface Response_Parser_Interface {

	/**
	 * Parses the response from the API.
	 *
	 * @param array<int|string|array<string>> $response The response from the API.
	 *
	 * @return Response The parsed response.
	 */
	public function parse( $response ): Response;
}

```
