Spring WebFlux · Schema

Spring WebFlux WebClient Request

JSON Schema representing a Spring WebFlux WebClient HTTP request configuration including URI, method, headers, and body.

JavaMicroservicesNon-Blocking IOReactive ProgrammingREST APISpring BootSpring FrameworkWebFlux

Properties

Name Type Description
method string HTTP method for the request
uri string Target URI for the HTTP request
baseUrl string Base URL configured on the WebClient instance
headers object HTTP request headers as key-value pairs
queryParams object Query parameters to append to the URI
pathVariables object URI template path variable substitutions
body object Request body - can be any JSON value, byte array, or reactive publisher
cookies object HTTP cookies to include in the request
timeout integer Request timeout in milliseconds
attributes object Request-scoped attributes accessible in filters and handlers
View JSON Schema on GitHub

JSON Schema

webflux-webclient-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/webflux/json-schema/webflux-webclient-request-schema.json",
  "title": "Spring WebFlux WebClient Request",
  "description": "JSON Schema representing a Spring WebFlux WebClient HTTP request configuration including URI, method, headers, and body.",
  "type": "object",
  "properties": {
    "method": {
      "type": "string",
      "enum": ["GET", "POST", "PUT", "PATCH", "DELETE", "HEAD", "OPTIONS"],
      "description": "HTTP method for the request"
    },
    "uri": {
      "type": "string",
      "format": "uri",
      "description": "Target URI for the HTTP request"
    },
    "baseUrl": {
      "type": "string",
      "format": "uri",
      "description": "Base URL configured on the WebClient instance"
    },
    "headers": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      },
      "description": "HTTP request headers as key-value pairs",
      "examples": [
        {
          "Content-Type": "application/json",
          "Accept": "application/json",
          "Authorization": "Bearer token"
        }
      ]
    },
    "queryParams": {
      "type": "object",
      "additionalProperties": {
        "oneOf": [
          {"type": "string"},
          {"type": "array", "items": {"type": "string"}}
        ]
      },
      "description": "Query parameters to append to the URI"
    },
    "pathVariables": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      },
      "description": "URI template path variable substitutions"
    },
    "body": {
      "description": "Request body - can be any JSON value, byte array, or reactive publisher",
      "oneOf": [
        {"type": "object"},
        {"type": "array"},
        {"type": "string"},
        {"type": "null"}
      ]
    },
    "cookies": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      },
      "description": "HTTP cookies to include in the request"
    },
    "timeout": {
      "type": "integer",
      "minimum": 0,
      "description": "Request timeout in milliseconds"
    },
    "attributes": {
      "type": "object",
      "additionalProperties": true,
      "description": "Request-scoped attributes accessible in filters and handlers"
    }
  },
  "required": ["method", "uri"]
}

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/webflux-webclient-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.