Get detailed performance data for a given domain and path
GET/page-insights/
v2
GET
pageinsights-get-performance-data
Request
Responses
Usage examples
- cURL
- JavaScript SDK
- PHP SDK
$ curl \
--fail \
--location \
-H "Authorization: Bearer $MITTWALD_API_TOKEN" \
https://api.mittwald.de/v2/page-insights?domain=string&path=string&date=string
import { MittwaldAPIV2Client } from "@mittwald/api-client";
import { assertStatus } from "@mittwald/api-client-commons";
const client = MittwaldAPIClient.newWithToken(process.env.MITTWALD_API_TOKEN);
const response = await client.pageInsights.pageinsightsGetPerformanceData({
"queryParameters": {
"domain": "string",
"path": "string",
"date": "string"
}
});
assertStatus(response, 200);
use \Mittwald\ApiClient\Generated\V2\Clients\PageInsights\GetPerformanceData\GetPerformanceDataRequest;
$client = MittwaldAPIClient::newWithToken(getenv('MITTWALD_API_TOKEN'));
$request = (new GetPerformanceDataRequest())
->withDomain("string")
->withPath("string")
->withDate("string");
$response = $client->pageInsights()->getPerformanceData($request);
var_dump($response->getBody();