Skip to main content
POST
https://api.worlds.wazoo.tech
/
v1
/
worlds
/
{worldId}
/
sparql
SPARQL Update
curl --request POST \
  --url https://api.worlds.wazoo.tech/v1/worlds/{worldId}/sparql \
  --header 'Content-Type: <content-type>'

Path Parameters

worldId
string
required
The unique identifier of the world.

Headers

Content-Type
string
required
Must be application/sparql-update.

Body

The body should contain the raw SPARQL update string. Example:
INSERT DATA {
  <http://example.org/subject> <http://example.org/predicate> "object" .
}

Response

The endpoint returns a 200 OK status on success.