OpenPipe Local Testing Only Get Latest Logged Call API

The Local Testing Only Get Latest Logged Call API from OpenPipe — 1 operation(s) for local testing only get latest logged call.

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/openpipe-local-testing-only-get-latest-logged-call-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 email required.

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

OpenAPI Specification

openpipe-local-testing-only-get-latest-logged-call-api-openapi.yml Raw ↑
openapi: 3.0.3
info:
  title: OpenPipe Chat Local Testing Only Get Latest Logged Call API
  description: The public API for reporting API calls to OpenPipe
  version: 0.1.1
servers:
- url: https://api.openpipe.ai/api/v1
tags:
- name: Local Testing Only Get Latest Logged Call
paths:
  /local-testing-only-get-latest-logged-call:
    get:
      operationId: localTestingOnlyGetLatestLoggedCall
      description: Get the latest logged call (only for local testing)
      security:
      - Authorization: []
      parameters: []
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  createdAt:
                    type: string
                    format: date-time
                  cacheHit:
                    type: boolean
                  statusCode:
                    type: number
                    nullable: true
                  errorMessage:
                    type: string
                    nullable: true
                  reqPayload: {}
                  respPayload: {}
                  tags:
                    type: object
                    additionalProperties:
                      type: string
                      nullable: true
                  metadata:
                    type: object
                    additionalProperties:
                      type: string
                      nullable: true
                required:
                - createdAt
                - cacheHit
                - statusCode
                - errorMessage
                - tags
                - metadata
                additionalProperties: false
                nullable: true
        default:
          $ref: '#/components/responses/error'
      tags:
      - Local Testing Only Get Latest Logged Call
components:
  responses:
    error:
      description: Error response
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
              code:
                type: string
              issues:
                type: array
                items:
                  type: object
                  properties:
                    message:
                      type: string
                  required:
                  - message
                  additionalProperties: false
            required:
            - message
            - code
            additionalProperties: false
  securitySchemes:
    Authorization:
      type: http
      scheme: bearer