HTTP Toolkit · Schema
HTTP Toolkit Send Request
Request body for the /client/send endpoint, defining the HTTP request to send through the proxy and the options controlling how it is sent.
HTTPHTTPSDebuggingProxyInterceptionMockingTestingDeveloper ToolsOpen-Source
Properties
| Name | Type | Description |
|---|---|---|
| request | object | The HTTP request to send. |
| options | object | Options that control how the request is sent through the proxy. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/http-toolkit/main/json-schema/http-toolkit-send-request.json",
"title": "HTTP Toolkit Send Request",
"description": "Request body for the /client/send endpoint, defining the HTTP request to send through the proxy and the options controlling how it is sent.",
"type": "object",
"required": ["request", "options"],
"properties": {
"request": {
"type": "object",
"title": "Request Definition",
"description": "The HTTP request to send.",
"required": ["method", "url"],
"properties": {
"method": {
"type": "string",
"description": "HTTP method to use.",
"enum": ["GET", "POST", "PUT", "PATCH", "DELETE", "HEAD", "OPTIONS", "TRACE"],
"examples": ["GET", "POST"]
},
"url": {
"type": "string",
"format": "uri",
"description": "Fully-qualified URL to send the request to.",
"examples": ["https://api.example.com/v1/users"]
},
"headers": {
"type": "object",
"description": "HTTP headers to include in the request.",
"additionalProperties": {
"type": "string"
},
"examples": [{"Content-Type": "application/json", "Authorization": "Bearer token123"}]
},
"rawBody": {
"type": "string",
"contentEncoding": "base64",
"description": "Base64-encoded request body bytes. Omit or use empty string for requests with no body."
}
},
"additionalProperties": false
},
"options": {
"type": "object",
"title": "Request Options",
"description": "Options that control how the request is sent through the proxy.",
"properties": {
"trustAdditionalCAs": {
"type": "boolean",
"description": "If true, trusts additional CA certificates beyond the system's default trust store."
},
"clientCertificate": {
"type": "object",
"title": "Client Certificate",
"description": "Client TLS certificate to use for mutual TLS authentication.",
"required": ["pfx"],
"properties": {
"pfx": {
"type": "string",
"contentEncoding": "base64",
"description": "Base64-encoded PKCS#12 (.pfx/.p12) certificate bundle."
},
"passphrase": {
"type": "string",
"description": "Passphrase to decrypt the PKCS#12 bundle, if encrypted."
}
},
"additionalProperties": false
},
"proxyConfig": {
"type": "object",
"description": "Per-request proxy configuration overrides.",
"additionalProperties": true
}
},
"additionalProperties": false
}
},
"additionalProperties": 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.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/http-toolkit-send-request"
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 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.