Agent Diff Diffs API

The Diffs API from Agent Diff — 1 operation(s) for diffs.

Operations 1

GET /sandboxes/{sandboxId}/diffs Agent Diff List Sandbox Diffs #

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/agent-diff-diffs-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

agent-diff-diffs-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Agent Diff Sandbox Diffs API
  description: The Agent Diff Sandbox API creates isolated, ephemeral replicas of third-party APIs such as Slack and Linear. Agents interact with these sandboxes to produce deterministic state-change diffs without side effects, rate limits, or real API calls.
  version: '1.0'
  contact:
    name: Agent Diff
    url: https://www.agentdiff.dev/
servers:
- url: https://api.agentdiff.dev/v1
  description: Agent Diff API
security:
- bearerAuth: []
tags:
- name: Diffs
paths:
  /sandboxes/{sandboxId}/diffs:
    get:
      operationId: list-sandbox-diffs
      summary: Agent Diff List Sandbox Diffs
      description: List state-change diffs produced by agent interactions with a sandbox.
      tags:
      - Diffs
      parameters:
      - name: sandboxId
        in: path
        required: true
        schema:
          type: string
        description: Sandbox identifier.
        example: example_value
      - name: limit
        in: query
        schema:
          type: integer
          default: 100
        description: Maximum number of diffs.
        example: 1
      - name: offset
        in: query
        schema:
          type: integer
          default: 0
        description: Pagination offset.
        example: 1
      responses:
        '200':
          description: List of diffs
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DiffList'
              examples:
                ListDiffsResponse:
                  summary: List of state-change diffs
                  value:
                    diffs:
                    - id: diff_xyz789
                      sandbox_id: sbox_abc123
                      operation: POST /channels
                      timestamp: '2026-04-19T10:05:00Z'
                      changes:
                      - path: /channels
                        type: add
                        value:
                          id: C003
                          name: announcements
                    total: 1
                  x-microcks-default: true
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    DiffList:
      type: object
      properties:
        diffs:
          type: array
          items:
            $ref: '#/components/schemas/DiffEntry'
          example:
          - example_value
        total:
          type: integer
          description: Total number of diffs.
          example: 1
    DiffEntry:
      type: object
      properties:
        id:
          type: string
          description: Unique diff identifier.
          example: '500123'
        sandbox_id:
          type: string
          description: Sandbox that produced this diff.
          example: '500123'
        operation:
          type: string
          description: API operation that triggered the state change.
          example: example_value
        timestamp:
          type: string
          format: date-time
          description: When the operation occurred.
          example: '2025-03-15T14:30:00Z'
        changes:
          type: array
          items:
            type: object
            properties:
              path:
                type: string
                description: JSON path to the changed resource.
              type:
                type: string
                enum:
                - add
                - remove
                - replace
                description: Type of change.
              value:
                description: New value (for add/replace operations).
          example:
          - path: example_value
            type: add
            value: example_value
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Bearer token authentication for Agent Diff API.