Programmatic access to Lumar's website intelligence platform. Build integrations, automate crawls, and extract insights using a single GraphQL endpoint.
query GetHealthScores {
me {
projects(first: 3) {
nodes {
name
primaryDomain
lastFinishedCrawl {
createdAt
crawlStatus
healthScores {
healthScore
category
changeFromPrevious
}
}
}
}
}
}Guides on authentication, queries, mutations, and integrating with the Lumar platform.
Interactive GraphQL playground — write queries, explore the schema, and test against live data.
Auto-generated reference for every type, query, mutation, and enum in the GraphQL schema.
The Lumar API uses GraphQL — a query language that lets you request exactly the data you need. All requests go to a single endpoint.
x-api-key header.curl -X POST https://api.lumar.io/graphql \
-H "Content-Type: application/json" \
-H "x-api-key: lmr_sa_123_your-secret-key" \
-d '{"query": "{ version }"}'