Apache Geode Queries API

The Queries API from Apache Geode — 2 operation(s) for queries.

Operations 3

GET /geode/v1/queries Apache Geode List Saved Queries #
POST /geode/v1/queries Apache Geode Create Named Query #
GET /geode/v1/queries/adhoc Apache Geode Execute Ad-Hoc Query #

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/apache-geode-queries-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

apache-geode-queries-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Apache Geode REST Administration Queries API
  version: 1.15.0
  description: REST API for accessing and managing data in Apache Geode in-memory data grid, including region operations, OQL queries, function execution, and cluster monitoring.
  contact:
    email: dev@geode.apache.org
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0
servers:
- url: http://localhost:8080
  description: Apache Geode REST API Server
tags:
- name: Queries
paths:
  /geode/v1/queries:
    get:
      operationId: listQueries
      summary: Apache Geode List Saved Queries
      description: List all named OQL queries saved in the Geode cluster.
      tags:
      - Queries
      responses:
        '200':
          description: Queries listed successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/QueryListResponse'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    post:
      operationId: createQuery
      summary: Apache Geode Create Named Query
      description: Create and save a named OQL query.
      tags:
      - Queries
      parameters:
      - name: id
        in: query
        required: true
        description: Unique query identifier
        schema:
          type: string
      - name: q
        in: query
        required: true
        description: OQL query string
        schema:
          type: string
      responses:
        '201':
          description: Query created successfully
        '409':
          description: Query with this ID already exists
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /geode/v1/queries/adhoc:
    get:
      operationId: executeAdhocQuery
      summary: Apache Geode Execute Ad-Hoc Query
      description: Execute an OQL query against the Geode data grid without saving it.
      tags:
      - Queries
      parameters:
      - name: q
        in: query
        required: true
        description: OQL query string to execute
        schema:
          type: string
          example: SELECT * FROM /orders WHERE status='PENDING'
      responses:
        '200':
          description: Query executed successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/QueryResult'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    QueryInfo:
      type: object
      description: Named OQL query metadata
      properties:
        id:
          type: string
          description: Unique query identifier
          example: getPendingOrders
        oql:
          type: string
          description: OQL query string
          example: SELECT * FROM /orders WHERE status='PENDING'
    QueryListResponse:
      type: object
      description: Response containing list of saved OQL queries
      properties:
        queries:
          type: array
          description: List of saved queries
          items:
            $ref: '#/components/schemas/QueryInfo'
    QueryResult:
      type: object
      description: Results from an OQL query execution
      properties:
        result:
          type: array
          description: Query result objects
          items:
            type: object