Skip to content
RAG Repo

Google Knowledge Graph API

The Knowledge Graph Search API lets you look up entities, people, places, organisations, creative works, and more, by name or keyword. For each match it returns a short description, the entity's types, an image where available, and a score showing how well it fits your query, which makes it handy for turning a raw name into a specific, identified entity.

Access is through a standard web API with a free tier and rate limits, so it suits lookups and enrichment rather than bulk download; you cannot pull the whole graph. Results come back as structured JSON that slots easily into a pipeline.

For RAG, this is a quick way to resolve and describe entities on the fly, for example to confirm which "Jordan" a document means or to attach a short, reliable summary to an entity. If you need data you can host and query in bulk, an open knowledge base such as Wikidata is the better fit.

apiknowledge-graphentitiesgooglefreemium

Related sources