Skip to main content
POST
https://api.worlds.wazoo.tech
/
v1
/
worlds
/
{worldId}
/
sparql
SPARQL Query
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-query.
Accept
string
Desired response format, e.g., application/sparql-results+json.

Body

The body should contain the raw SPARQL query string. Example:
SELECT ?s ?p ?o WHERE { ?s ?p ?o } LIMIT 10

Response

Returns the SPARQL query results in the requested format (JSON by default).