Market check
What a neighbourhood is asking in the newest complete period — price per m², by property type, down to an H3 cell.
What do flats cost in Russafa, Valencia right now?
Real asking prices for European property, in the AI tools you already use — every answer carries the place it covers and the period it was measured over.
Setup
There is no server to run and nothing to host. The CLI is an ordinary shell command, and the skill is a Markdown file — any agent that can run commands can use it.
Tokens live in your account, under API access. A new token is shown once — copy it then. It is read-only unless you ask for read/write.
Homebrew on macOS. On Linux, grab the tarball from the releases page and put investviews on your PATH.
brew install Investviews/tap/investviewsSaved to ~/.config/investviews/config.toml, readable only by you.
investviews auth login --token iv_live_xxxxxxxxRun both lines inside Claude Code. The first adds our marketplace, the second installs the skill.
/plugin marketplace add Investviews/investviews-cli /plugin install investviews@investviews-cli
No endpoint names, no geo ids. The skill teaches the workflow: find the place for free, check data exists, then spend one call.
> What do flats cost in Russafa, Valencia right now?brew install Investviews/tap/investviews investviews auth login --token iv_live_xxxxxxxx
Search by name, or walk the tree from the countries down. Neither counts against your quota.
investviews geo search Russafa investviews geo browse
Every command prints a cost: line saying whether it was free or metered.
investviews stats current --geo-id <id> investviews stats history --geo-id <id> cost: 1 metered call · period 2026-08
Same two commands as the CLI tab. The agent calls the binary; it never handles your token.
The instructions Claude follows are plain Markdown at skills/investviews/SKILL.md. Hand that file to your agent as its guide — Cursor rules, a system prompt, or whatever your tool calls it.
https://github.com/Investviews/investviews-cli └─ skills/investviews/SKILL.md
The OpenAPI contract is served live and unauthenticated. Point any codegen or agent framework at it.
curl -H "Authorization: Bearer iv_live_xxxxxxxx" \ "https://api.investviews.ai/public/v1/geo/search?q=Russafa"
Primary use cases
Three shapes of question, all over the same connection. Your agent resolves the place for free, then spends one metered call on the figures.
What a neighbourhood is asking in the newest complete period — price per m², by property type, down to an H3 cell.
What do flats cost in Russafa, Valencia right now?
How asking prices moved over past periods, so a claim about a market has a series behind it.
How have asking prices in Montenegro changed over the last year?
One question across several markets, each answered from the same period so the comparison holds.
Compare price per m² in Valencia, Alicante and Málaga for the latest period.
Prompts to try
How it is counted
An agent that cannot tell a free call from a metered one either stops to ask permission it does not need, or burns quota it did not have to. Ours knows the difference, and says so on every command.
Documentation
Written for people and for agents — every guide has a .md twin, and the whole site is available as one file.