Explore and query the Hooray Media Knowledge Graph using SPARQL
URL: https://data.hooray.media/hooray/sparql
Methods: GET, POST
Supported: SELECT, CONSTRUCT, ASK, DESCRIBE queries
Note: This is a read-only public endpoint. UPDATE queries are blocked for security.
This knowledge graph is discoverable via Linked Data standards:
These resources enable search engines, AI systems, and automated tooling to discover and query the knowledge graph.
Enter a query above and click "Run Query" to see results here.
SELECT * WHERE { ?s ?p ?o } LIMIT 10
PREFIX schema:
SELECT * WHERE { ?s a schema:Person . ?s schema:name ?name } LIMIT 10
PREFIX schema:
SELECT ?s ?name WHERE {
?s schema:name ?name .
FILTER(CONTAINS(LCASE(?name), "test"))
} LIMIT 10
PREFIX schema:
CONSTRUCT { ?s ?p ?o } WHERE {
?p ?o .
}