Convex · Schema

FunctionRequest

BackendDatabaseFunctionsReal-TimeReactiveServerlessTypeScript

Properties

Name Type Description
path string The fully-qualified function path in the format "module:functionName" (e.g. "messages:list"). The module name maps to the file path within the convex/ directory.
args object Named arguments to pass to the function as a JSON object. The keys and value types must match the function's declared parameter types.
format string Output format for the response value. Currently only "json" is supported and is also the default when omitted.
View JSON Schema on GitHub

JSON Schema

convex-functionrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FunctionRequest",
  "title": "FunctionRequest",
  "type": "object",
  "required": [
    "path",
    "args"
  ],
  "properties": {
    "path": {
      "type": "string",
      "description": "The fully-qualified function path in the format \"module:functionName\" (e.g. \"messages:list\"). The module name maps to the file path within the convex/ directory.",
      "pattern": "^[a-zA-Z0-9_/]+:[a-zA-Z0-9_]+$",
      "example": "messages:list"
    },
    "args": {
      "type": "object",
      "description": "Named arguments to pass to the function as a JSON object. The keys and value types must match the function's declared parameter types.",
      "additionalProperties": true
    },
    "format": {
      "type": "string",
      "description": "Output format for the response value. Currently only \"json\" is supported and is also the default when omitted.",
      "enum": [
        "json"
      ],
      "default": "json"
    }
  }
}

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/convex-functionrequest"
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.