スキル一覧に戻る
kasperjunge

boliga-api

by kasperjunge

My collection of Claude Code skills, slash commands and subagents that can be installed locally using uvx add-skill/add-command/add-agent: https://github.com/kasperjunge/agent-resources-project

9🍴 1📅 2026年1月9日
GitHubで見るManusで実行

SKILL.md


name: boliga-api description: Query Danish real estate data from Boliga.dk as pandas DataFrames. Use when the user asks about Danish property prices, real estate searches, market statistics, or housing analysis in Denmark.

Boliga API

Query Danish real estate data via scripts/boliga.py.

Usage

import sys
sys.path.insert(0, '<skill-path>/scripts')
from boliga import get_properties, Municipality, PropertyType, SortOrder

# Search properties
df = get_properties(
    municipality=Municipality.ROSKILDE,
    property_type=PropertyType.TERRACED,
    price_max=5000000
)

# Analyze with pandas
avg_sqm = df['sqm_price'].mean()
df.groupby('zip_code')['price'].median()

Functions

FunctionReturnsDescription
get_properties(...)DataFrameActive listings with filters
get_sold_properties(...)DataFrameHistorical sales
get_estate_details(id)dictProperty details
get_property_history(id)DataFrameProperty sale history
get_market_statistics()dictNational price trends
search_location(query)DataFrameLocation autocomplete
get_new_construction(...)DataFrameNew construction projects

Key Parameters

Municipalities: Municipality.COPENHAGEN, ROSKILDE, AARHUS, ODENSE, FREDERIKSBERG, GENTOFTE

Property types: PropertyType.VILLA, TERRACED, APARTMENT, HOLIDAY, COOPERATIVE, FARM

Sort: SortOrder.PRICE_ASC, PRICE_DESC, SQM_PRICE_ASC, DAYS_FOR_SALE_ASC

DataFrame Columns

get_properties() returns: id, street, city, zip_code, price, sqm_price, size, rooms, build_year, property_type, days_for_sale, lot_size, energy_class, lat, lon, views

スコア

総合スコア

60/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

+10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です