Skip to main content
Personal AI Agent48 Compatible Sources

Pi Agent Integrations for Danish Systems

Pi personal AI assistant tool integrations for querying Danish local data, transport schedules, and public statistics.

Compatible Danish Sources (48)

Verified APIs, MCP servers, and data feeds ready for Pi Agent integration.

Pi Agent Integration Snippet
# Bilbasen & Bilinfo API — Direct Query Unavailable
# Category: api | Access: restricted | Auth: restricted
# This system does not support generic GET query calls against its homepage.
# Please consult the official developer documentation:
# https://developer.bilinfo.net
Pi Agent Integration Snippet
# Boliga.dk — Direct Query Unavailable
# Category: api | Access: indirect | Auth: public
# This system does not support generic GET query calls against its homepage.
# Please consult the official developer documentation:
# https://www.boliga.dk
Pi Agent Integration Snippet
import httpx
import asyncio

async def fetch_cvr-api(search_term: str) -> dict:
    """
    Fetch data from CVR — Business Registry API (https://cvrapi.dk/api).
    Category: api | Sector: government | Auth: api_key
    """
    async with httpx.AsyncClient(timeout=10.0) as client:
        response = await client.get(
            "https://cvrapi.dk/api",
            params={"search": search_term},
            headers={"User-Agent": "AgentAccess-Python/1.0"}
        )
        response.raise_for_status()
        return response.json()

if __name__ == "__main__":
    result = asyncio.run(fetch_cvr-api("test"))
    print(result)
Pi Agent Integration Snippet
# Corti API — Direct Query Unavailable
# Category: api | Access: direct | Auth: restricted
# This system does not support generic GET query calls against its homepage.
# Please consult the official developer documentation:
# https://docs.corti.ai
Pi Agent Integration Snippet
import httpx
import asyncio

async def fetch_dawa(search_term: str) -> dict:
    """
    Fetch data from DAWA — Danish Addresses Web API (https://api.dataforsyningen.dk/adresser).
    Category: api | Sector: government | Auth: public
    """
    async with httpx.AsyncClient(timeout=10.0) as client:
        response = await client.get(
            "https://api.dataforsyningen.dk/adresser",
            params={"q": search_term},
            headers={"User-Agent": "AgentAccess-Python/1.0"}
        )
        response.raise_for_status()
        return response.json()

if __name__ == "__main__":
    result = asyncio.run(fetch_dawa("test"))
    print(result)
Pi Agent Integration Snippet
# DMI Open Data APIs — Direct Query Unavailable
# Category: api | Access: direct | Auth: api_key
# This system does not support generic GET query calls against its homepage.
# Please consult the official developer documentation:
# https://opendatadocs.dmi.gov.cloud
Pi Agent Integration Snippet
# DR — Danish Broadcasting — Direct Query Unavailable
# Category: api | Access: indirect | Auth: public
# This system does not support generic GET query calls against its homepage.
# Please consult the official developer documentation:
# https://www.dr.dk
Pi Agent Integration Snippet
# Danmarks Miljøportal — Direct Query Unavailable
# Category: api | Access: direct | Auth: public
# This system does not support generic GET query calls against its homepage.
# Please consult the official developer documentation:
# https://miljoeportal.dk/services/
Pi Agent Integration Snippet
# Danmarks Nationalbank — Data API — Direct Query Unavailable
# Category: api | Access: direct | Auth: public
# This system does not support generic GET query calls against its homepage.
# Please consult the official developer documentation:
# https://www.nationalbanken.dk/da/statistik/find_statistik/Pages/default.aspx
Pi Agent Integration Snippet
# Danske Bank Developer Portal — Direct Query Unavailable
# Category: api | Access: restricted | Auth: restricted
# This system does not support generic GET query calls against its homepage.
# Please consult the official developer documentation:
# https://developer.danskebank.com
Pi Agent Integration Snippet
# Danske Bank Developer Portal — Direct Query Unavailable
# Category: api | Access: restricted | Auth: restricted
# This system does not support generic GET query calls against its homepage.
# Please consult the official developer documentation:
# https://developers.danskebank.com
Pi Agent Integration Snippet
# Datafordeler — Direct Query Unavailable
# Category: api | Access: direct | Auth: api_key
# This system does not support generic GET query calls against its homepage.
# Please consult the official developer documentation:
# https://datafordeler.dk/vejledning/brugeradgang/

Frequently Asked Questions (Pi Agent)

Can Pi access Danish transport data?

Yes, through Rejseplanen and open mobility API integrations cataloged on AgentAccess.