API catalog / Google API / Get the knowledge panel for a query

Google Knowledge Panel API

The structured entity card behind a query — name, type, summary, image and attributes — as one JSON object.

GEThttps://api.endpointry.com/v1/google/knowledge-panel

Returns structured entity data — name, type, summary, image and attributes — for queries that resolve to a known entity. Returns `404 NOT_FOUND` when the query has no panel. Sharing a warm result set with `/web-search`, so a lookup after a search is served from cache.

Query parameterseditable
query *string
Response fields (data)
name*string
label*string | nullShort type descriptor, e.g. "Software company".
description*object | null
text*string
source_url*string · uri | null
source_name*string | null
image*object | null
url*string · uri
width*integer | null
height*integer | null
page_url*string · uri | null
attributes*array<object>Structured facts, e.g. Founded → ["2021"].
label*string
values*array<string>
Response meta

Platform fields, identical on every endpoint — what they mean.

Request
curl "https://api.endpointry.com/v1/google/knowledge-panel?query=anthropic" \
  -H "Authorization: Bearer sk_live_..."
Loading…
Responseexample
200 · application/json
{
  "meta": {
    "request_id": "req_7729f93d3facf68ff83e5c50",
    "as_of": "2026-07-31T12:00:00.000Z",
    "cache": "MISS"
  },
  "data": {
    "name": "Claude",
    "label": "Language model",
    "description": {
      "text": "Claude is a family of large language models developed by Anthropic.",
      "source_url": "https://en.wikipedia.org/wiki/Claude_(language_model)",
      "source_name": "Wikipedia"
    },
    "image": {
      "url": "https://encrypted-tbn0.gstatic.com/images?q=tbn:UQV8oMkcm41-NM",
      "width": 268,
      "height": 188,
      "page_url": "https://www.anthropic.com"
    },
    "attributes": [
      {
        "label": "Developer",
        "values": [
          "Anthropic"
        ]
      }
    ]
  }
}

What teams build with it

  • Entity enrichment for CRMs and data platforms
  • Brand and person monitoring with a stable entity schema
  • Disambiguation in search interfaces — is this query a known entity?
  • Knowledge-base building without HTML parsing

Frequently asked questions

What happens when a query has no knowledge panel?

The endpoint returns 404 NOT_FOUND. That answer is deterministic — retrying will not change it — so you can cache it on your side.

Which queries have panels?

Queries that resolve to a known entity: companies, people, places, products, works. Generic or ambiguous queries typically have none.

Is a panel lookup a separate billable call after a search?

It is one request. A lookup right after a web search for the same query is typically served from the shared snapshot, making it fast.

What do attributes look like?

A list of label/values pairs exactly as the panel presents them — for example "Founded" → ["2019"]. The schema is identical for every entity type.