OpenMetadata RDF SQL API

Execute SQL queries over RDF data

Operations 2

POST /v1/rdf/sql/query Execute SQL query over RDF data #
POST /v1/rdf/sql/translate Translate SQL to SPARQL #

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/openmetadata-rdf-sql-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

openmetadata-rdf-sql-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: OpenMetadata APIs Agent Executions RDF SQL API
  description: Common types and API definition for OpenMetadata
  contact:
    name: OpenMetadata
    url: https://open-metadata.org
    email: openmetadata-dev@googlegroups.com
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0
  version: '1.13'
servers:
- url: /api
  description: Current Host
- url: http://localhost:8585/api
  description: Endpoint URL
security:
- BearerAuth: []
tags:
- name: RDF SQL
  description: Execute SQL queries over RDF data
paths:
  /v1/rdf/sql/query:
    post:
      tags:
      - RDF SQL
      summary: Execute SQL query over RDF data
      description: Translates SQL to SPARQL and executes against RDF store
      operationId: executeSqlOverRdf
      parameters:
      - name: format
        in: query
        description: Result format
        schema:
          type: string
          default: application/sparql-results+json
          enum:
          - application/sparql-results+json
          - application/sparql-results+xml
          - text/csv
          - text/tab-separated-values
      requestBody:
        description: SQL query to execute
        content:
          application/json:
            schema:
              type: string
        required: true
      responses:
        '200':
          description: Query results
          content:
            application/json:
              schema:
                type: string
        '400':
          description: Invalid SQL query
        '503':
          description: RDF support not enabled
  /v1/rdf/sql/translate:
    post:
      tags:
      - RDF SQL
      summary: Translate SQL to SPARQL
      description: Translates SQL query to SPARQL without executing
      operationId: translateSqlToSparql
      requestBody:
        description: SQL query to translate
        content:
          application/json:
            schema:
              type: string
        required: true
      responses:
        '200':
          description: SPARQL translation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TranslationResponse'
        '400':
          description: Invalid SQL query
        '503':
          description: RDF support not enabled
components:
  schemas:
    TranslationResponse:
      type: object
      properties:
        sqlQuery:
          type: string
          description: Original SQL query
        sparqlQuery:
          type: string
          description: Translated SPARQL query
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT