GTmetrix integration
GTmetrix is a performance testing and monitoring tool that analyzes website…
- Provider
- gtmetrix
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 20 available
Quick start
Call GTmetrix from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to GTmetrix's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.
// In your generated app's worker handler:
const composio = composioClient(env);
const result = await composio.execute(
"GTMETRIX_ACTION_NAME",
{ /* action parameters — see Actions section below */ }
);
return new Response(JSON.stringify(result), {
headers: { "Content-Type": "application/json" }
});
Replace ACTION_NAME with one of the slugs listed in
the Actions section below. The composio client handles auth +
rate limits automatically — no API key is exposed to user code.
Setup
End-users supply their own GTmetrix API key. OverSkill provides a pre-built connection form via the integration card — your app can call the composio client immediately once the user has connected.
Available actions
20 actions exposed via the
GTmetrix integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
GTMETRIX_DELETE_PAGE -
GTMETRIX_DELETE_REPORT -
GTMETRIX_GET_BROWSER -
GTMETRIX_GET_BROWSERS -
GTMETRIX_GET_LOCATION -
GTMETRIX_GET_LOCATIONS -
GTMETRIX_GET_PAGE -
GTMETRIX_GET_PAGE_LATEST_REPORT -
GTMETRIX_GET_PAGE_REPORTS -
GTMETRIX_GET_PAGES -
GTMETRIX_GET_REPORT -
GTMETRIX_GET_REPORT_RESOURCE
Show all 20 actions
-
GTMETRIX_GET_SIMULATED_DEVICE -
GTMETRIX_GET_SIMULATED_DEVICES -
GTMETRIX_GET_STATUS -
GTMETRIX_GET_TEST -
GTMETRIX_GET_TESTS -
GTMETRIX_RETEST_PAGE -
GTMETRIX_RETEST_REPORT -
GTMETRIX_START_TEST
Build with GTmetrix
Open OverSkill, describe what you want to build, and reference GTmetrix in your prompt — the AI will wire up the integration automatically.