Apache Jena SPARQL Update API

SPARQL 1.1 Update operations

Operations 1

POST /{dataset}/update Apache jena Apache Jena Fuseki SPARQL Update #

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-jena-sparql-update-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-jena-sparql-update-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Apache Jena Fuseki SPARQL Dataset Management SPARQL Update API
  description: REST API for Apache Jena Fuseki SPARQL server providing SPARQL Query, SPARQL Update, and Graph Store Protocol (GSP) operations for managing RDF datasets.
  version: 5.0.0
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0
  contact:
    email: users@jena.apache.org
servers:
- url: http://localhost:3030
  description: Apache Jena Fuseki server
tags:
- name: SPARQL Update
  description: SPARQL 1.1 Update operations
paths:
  /{dataset}/update:
    post:
      operationId: sparqlUpdate
      summary: Apache jena Apache Jena Fuseki SPARQL Update
      description: Execute a SPARQL 1.1 Update operation to modify RDF data.
      tags:
      - SPARQL Update
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
      parameters:
      - name: dataset
        in: path
        required: true
        schema:
          type: string
        example: ds
      requestBody:
        required: true
        content:
          application/sparql-update:
            schema:
              type: string
              example: INSERT DATA { <http://example.org/s> <http://example.org/p> <http://example.org/o> }
      responses:
        '200':
          description: Update executed successfully
        '400':
          description: Invalid SPARQL update