tessl.io Agent Logs API

Agent and hosted-execution log uploads.

Operations 1

POST /experimental/agent-logs/presigned-url

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/tesslio-agent-logs-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

tesslio-agent-logs-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Tessl Admin Keys Agent Logs API
  version: 1.0.0
  description: Admin-scoped API keys for support tooling.
servers:
- url: https://api.tessl.io
tags:
- name: Agent Logs
  description: Agent and hosted-execution log uploads.
paths:
  /experimental/agent-logs/presigned-url:
    post:
      tags:
      - Agent Logs
      description: Issues a presigned S3 URL for uploading an agent session log captured by the Tessl CLI or supported coding-agent integrations.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - provider
              - projectPath
              - sessionId
              - capturedAt
              - contentType
              properties:
                provider:
                  anyOf:
                  - type: string
                    enum:
                    - claude-code
                  - type: string
                    enum:
                    - cursor-ide
                  - type: string
                    enum:
                    - cursor-agent
                  - type: string
                    enum:
                    - tessl-agent
                  - type: string
                    enum:
                    - tessl-cli
                  - type: string
                    enum:
                    - gemini-cli
                  - type: string
                    enum:
                    - codex-cli
                projectPath:
                  type: string
                sessionId:
                  type: string
                capturedAt:
                  format: date-time
                  type: string
                contentType:
                  default: application/json
                  type: string
                contentEncoding:
                  type: string
                schemaVersion:
                  type: number
                launchRunId:
                  format: uuid
                  type: string
                metadata:
                  type: object
                  properties:
                    cliVersion:
                      type: string
                    platform:
                      type: string
                    arch:
                      type: string
                    osType:
                      type: string
                    osRelease:
                      type: string
                    nodeVersion:
                      type: string
                    gitRepo:
                      type: string
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                required:
                - presignedUrl
                - expiresIn
                properties:
                  presignedUrl:
                    format: uri
                    type: string
                  expiresIn:
                    type: number
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                description: Not Found
                type: object
                required:
                - error
                properties:
                  error:
                    type: object
                    required:
                    - title
                    - status
                    - message
                    properties:
                      title:
                        type: string
                        enum:
                        - Not Found
                      status:
                        type: number
                        enum:
                        - 404
                      message:
                        type: string
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                description: Internal Server Error
                type: object
                required:
                - error
                properties:
                  error:
                    type: object
                    required:
                    - title
                    - status
                    - message
                    properties:
                      title:
                        type: string
                        enum:
                        - Internal Server Error
                      status:
                        type: number
                        enum:
                        - 500
                      message:
                        type: string