Thunder Client · Schema

Thunder Client Environment

JSON Schema for a Thunder Client environment file containing variable key-value pairs for request parameterization

API ClientAPI TestingCI/CDCLICollectionGraphQLREST ClientVS Code

Properties

Name Type Description
version string Thunder Client environment format version
name string Environment name (e.g., 'Development', 'Staging', 'Production')
dateExported string ISO 8601 timestamp when the environment was exported
client string
data array Array of environment variable key-value pairs
View JSON Schema on GitHub

JSON Schema

thunder-client-environment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.thunderclient.com/schema/environment",
  "title": "Thunder Client Environment",
  "description": "JSON Schema for a Thunder Client environment file containing variable key-value pairs for request parameterization",
  "type": "object",
  "required": ["version", "name", "data"],
  "properties": {
    "version": {
      "type": "string",
      "description": "Thunder Client environment format version"
    },
    "name": {
      "type": "string",
      "description": "Environment name (e.g., 'Development', 'Staging', 'Production')"
    },
    "dateExported": {
      "type": "string",
      "format": "date-time",
      "description": "ISO 8601 timestamp when the environment was exported"
    },
    "client": {
      "type": "string",
      "const": "Thunder Client"
    },
    "data": {
      "type": "array",
      "description": "Array of environment variable key-value pairs",
      "items": {
        "type": "object",
        "required": ["name", "value"],
        "properties": {
          "name": {
            "type": "string",
            "description": "Variable name; referenced in requests as {{name}}"
          },
          "value": {
            "type": "string",
            "description": "Variable value"
          },
          "isSecret": {
            "type": "boolean",
            "default": false,
            "description": "If true, the value is masked in the UI"
          },
          "isDisabled": {
            "type": "boolean",
            "default": false
          }
        }
      }
    }
  }
}

Work with this as data

Every JSON Schema 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 schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • 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 JSON Schema
curl "https://apis.io/api/v1/json-schemas/thunder-client-environment"
All schemas
curl "https://apis.io/api/v1/json-schemas?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.