LambdaTest Lighthouse API

The Lighthouse API from LambdaTest — 1 operation(s) for lighthouse.

Operations 1

GET /lighthouse/report/{session_id} To fetch the Lighthouse performance report data.

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/lambdatest-lighthouse-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

lambdatest-lighthouse-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: TestMu AI SmartUI API Documentation Autoheal Command Logs Lighthouse API
  version: 1.0.1
servers:
- url: https://api.lambdatest.com/automation/smart-ui
- url: https://eu-api.lambdatest.com/automation/smart-ui
tags:
- name: Lighthouse
paths:
  /lighthouse/report/{session_id}:
    get:
      tags:
      - Lighthouse
      summary: To fetch the Lighthouse performance report data.
      description: To fetch URL to download the generated Lighthouse performance report JSON data.
      parameters:
      - name: session_id
        in: path
        description: SESSION ID
        required: true
        style: simple
        explode: false
        schema:
          type: string
      responses:
        200:
          description: Operation successful
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LighthouseReportResponse'
        400:
          description: Bad Request. Conditional combination of 'chrome' browser & capability 'performance=true' is not there.
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: Please provide valid inputs. Conditional combination of 'chrome' browser & capability 'performance=true' is not satisfied for the test associated with the given sessionId.
                  status:
                    type: string
                    example: fail
        401:
          description: Access denied. Auth error.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccessDenied'
        404:
          description: Resource associated to session_id is not available.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SessionNotFound'
        500:
          description: Unable to get Lighthouse report data.
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: Unable to get Lighthouse report data.
                  status:
                    type: string
                    example: fail
      security:
      - basicAuth: []
components:
  schemas:
    AccessDenied:
      type: string
      example: 'HTTP Basic: Access denied.'
    SessionNotFound:
      type: object
      properties:
        message:
          type: string
          example: Either resource not found or already deleted
        status:
          type: string
          example: fail
    LighthouseReportResponse:
      type: object
      properties:
        message:
          type: string
          example: Retrieve Lighthouse Report data was successful.
        status:
          type: string
          example: success
        data:
          type: string
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic