
Grab your gear: The official Sanity swag store
Read Grab your gear: The official Sanity swag storeThe error "no API found with those values" you're seeing happens because /v1/groq/development isn't a valid Sanity API endpoint. That URL format doesn't exist in Sanity's HTTP API structure.
The correct endpoint format for querying content via GROQ is:
https://abc123.api.sanity.io/<version>/data/query/<dataset>
So you'd need something like:
https://abc123.api.sanity.io/v2024-12-01/data/query/production?query=*[_type == "post"]
Key things to fix:
/data/query/ instead of /groq/v2024-12-01 or v2021-06-07 (check API versioning docs)development with your real dataset name (usually production - check your sanity.config.ts file)?query=YOUR_GROQ_QUERY?token=... or in an Authorization headerBetter approach for testing: Instead of clicking raw API links, use the Vision plugin in your Studio (usually at http://localhost:3333/vision). It gives you a much better query testing experience with syntax highlighting, autocomplete, and formatted results.
The link you clicked from the dashboard was probably a placeholder or malformed URL - the /groq/development path structure simply doesn't exist in Sanity's API architecture.
Sanity is the developer-first content operating system that gives you complete control. Schema-as-code, GROQ queries, and real-time APIs mean no more workarounds or waiting for deployments. Free to start, scale as you grow.
Content operations
Content backend


The only platform powering content operations
By Industry


Tecovas strengthens their customer connections
Build and Share

Grab your gear: The official Sanity swag store
Read Grab your gear: The official Sanity swag store