Apache Jena Graph Store Protocol API

SPARQL Graph Store HTTP Protocol operations

Operations 4

GET /{dataset}/data Apache jena Apache Jena Fuseki Get Graph #
PUT /{dataset}/data Apache jena Apache Jena Fuseki Replace Graph #
POST /{dataset}/data Apache jena Apache Jena Fuseki Add to Graph #
DELETE /{dataset}/data Apache jena Apache Jena Fuseki Delete Graph #

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-graph-store-protocol-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-graph-store-protocol-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Apache Jena Fuseki SPARQL Dataset Management Graph Store Protocol 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: Graph Store Protocol
  description: SPARQL Graph Store HTTP Protocol operations
paths:
  /{dataset}/data:
    get:
      operationId: getGraph
      summary: Apache jena Apache Jena Fuseki Get Graph
      description: Retrieve an RDF graph from the dataset using the Graph Store Protocol.
      tags:
      - Graph Store Protocol
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
      parameters:
      - name: dataset
        in: path
        required: true
        schema:
          type: string
        example: ds
      - name: graph
        in: query
        schema:
          type: string
        example: http://example.org/graph
        description: Named graph URI (omit for default graph)
      responses:
        '200':
          description: RDF graph content
          content:
            text/turtle:
              schema:
                type: string
            application/ld+json:
              schema:
                type: string
            application/rdf+xml:
              schema:
                type: string
        '404':
          description: Graph not found
    put:
      operationId: replaceGraph
      summary: Apache jena Apache Jena Fuseki Replace Graph
      description: Replace an RDF graph in the dataset.
      tags:
      - Graph Store Protocol
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
      parameters:
      - name: dataset
        in: path
        required: true
        schema:
          type: string
        example: ds
      - name: graph
        in: query
        schema:
          type: string
        example: http://example.org/graph
      requestBody:
        required: true
        content:
          text/turtle:
            schema:
              type: string
      responses:
        '200':
          description: Graph replaced
        '201':
          description: Graph created
    post:
      operationId: addToGraph
      summary: Apache jena Apache Jena Fuseki Add to Graph
      description: Add RDF triples to an existing graph.
      tags:
      - Graph Store Protocol
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
      parameters:
      - name: dataset
        in: path
        required: true
        schema:
          type: string
        example: ds
      - name: graph
        in: query
        schema:
          type: string
        example: example-value
      requestBody:
        required: true
        content:
          text/turtle:
            schema:
              type: string
      responses:
        '200':
          description: Triples added
    delete:
      operationId: deleteGraph
      summary: Apache jena Apache Jena Fuseki Delete Graph
      description: Delete a named graph from the dataset.
      tags:
      - Graph Store Protocol
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
      parameters:
      - name: dataset
        in: path
        required: true
        schema:
          type: string
        example: ds
      - name: graph
        in: query
        schema:
          type: string
        example: http://example.org/graph
      responses:
        '200':
          description: Graph deleted