Knowledge Graph

Endpoint Information

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.

🔍 Discovery & Metadata

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.

Results

Enter a query above and click "Run Query" to see results here.

Example Queries

Find all entities SELECT * WHERE { ?s ?p ?o } LIMIT 10
Find all people PREFIX schema: SELECT * WHERE { ?s a schema:Person . ?s schema:name ?name } LIMIT 10
Find entities by name pattern PREFIX schema: SELECT ?s ?name WHERE { ?s schema:name ?name . FILTER(CONTAINS(LCASE(?name), "test")) } LIMIT 10
Get entity description (CONSTRUCT) PREFIX schema: CONSTRUCT { ?s ?p ?o } WHERE { ?p ?o . }