One stable REST endpoint over a century of editorially-curated art scholarship. Use it to enrich your catalogue, power your collector app, or feed your own LLM with authoritative Skira context.
/v1/entities/:slugFetch a single entity with linked sources and tags/v1/entitiesList entities, filter by kind (artist, movement, period…)/v1/searchSemantic search across entities, sources and themes/v1/sources/:idRetrieve a Skira-certified source with metadata/v1/graph/:slugEgo graph around any entity (depth 1–3)/v1/entities/// response will appear here // click 'Try' or pick a suggestion above
curl https://skira.api/v1/entities/street-art \ -H "Authorization: Bearer sk_skira_..."
const res = await fetch(
"https://skira.api/v1/entities/street-art",
{ headers: { Authorization: `Bearer ${SKIRA_KEY}` } }
);
const entity = await res.json();import httpx
r = httpx.get(
"https://skira.api/v1/entities/street-art",
headers={"Authorization": f"Bearer {SKIRA_KEY}"},
)
entity = r.json()