Bilbasen & Bilinfo API
Danish automotive marketplace and vehicle inventory APIs for car listings, valuations, and dealer syndication.
LlamaIndex data readers and tool specs to ingest Danish public datasets, municipal documents, and API feeds into vector indexes and agentic workflows.
Verificerede API'er, MCP-servere og datafeeds klar til LlamaIndex.
// Integration Notice: Bilbasen & Bilinfo API
// Category: API | Access: restricted | Auth: restricted
// Refer to documentation: https://developer.bilinfo.net
export const bilbasenConfig = {
name: "bilbasen",
status: "requires_portal_or_custom_client",
docsUrl: "https://developer.bilinfo.net",
};// Integration Notice: Boliga.dk
// Category: API | Access: indirect | Auth: public
// Refer to documentation: https://www.boliga.dk
export const boligaConfig = {
name: "boliga",
status: "requires_portal_or_custom_client",
docsUrl: "https://www.boliga.dk",
};import { FunctionTool } from "llamaindex";
export const cvr-apiTool = FunctionTool.from(
async ({ query }: { query: string }) => {
const res = await fetch(`https://cvrapi.dk/api?search=${encodeURIComponent(query)}`);
return await res.text();
},
{
name: "cvr-api",
description: "Central Business Register API giving machine access to all Danish companies, CVR numbers, ownership, and industry codes.",
}
);// Integration Notice: Corti API
// Category: API | Access: direct | Auth: restricted
// Refer to documentation: https://docs.corti.ai
export const cortiConfig = {
name: "corti",
status: "requires_portal_or_custom_client",
docsUrl: "https://docs.corti.ai",
};// Integration Notice: DAWA MCP Server (ITK)
// Category: MCP | Access: direct | Auth: public
// Refer to documentation: https://github.com/itk-dev/mcp-dawa#readme
export const mcp-dawa-itkConfig = {
name: "mcp-dawa-itk",
status: "requires_portal_or_custom_client",
docsUrl: "https://github.com/itk-dev/mcp-dawa#readme",
};import { FunctionTool } from "llamaindex";
export const dawaTool = FunctionTool.from(
async ({ query }: { query: string }) => {
const res = await fetch(`https://api.dataforsyningen.dk/adresser?q=${encodeURIComponent(query)}`);
return await res.text();
},
{
name: "dawa",
description: "REST API for Danish addresses, postcodes, cadastre, and administrative geodata.",
}
);// Integration Notice: DMI Open Data APIs
// Category: API | Access: direct | Auth: api_key
// Refer to documentation: https://opendatadocs.dmi.gov.cloud
export const dmi-open-dataConfig = {
name: "dmi-open-data",
status: "requires_portal_or_custom_client",
docsUrl: "https://opendatadocs.dmi.gov.cloud",
};// Integration Notice: DR — Danish Broadcasting
// Category: API | Access: indirect | Auth: public
// Refer to documentation: https://www.dr.dk
export const drConfig = {
name: "dr",
status: "requires_portal_or_custom_client",
docsUrl: "https://www.dr.dk",
};// Integration Notice: Danmarks Miljøportal
// Category: API | Access: direct | Auth: public
// Refer to documentation: https://miljoeportal.dk/services/
export const danmarks-miljoeportalConfig = {
name: "danmarks-miljoeportal",
status: "requires_portal_or_custom_client",
docsUrl: "https://miljoeportal.dk/services/",
};// Integration Notice: Danmarks Nationalbank — Data API
// Category: API | Access: direct | Auth: public
// Refer to documentation: https://www.nationalbanken.dk/da/statistik/find_statistik/Pages/default.aspx
export const nationalbanken-dataConfig = {
name: "nationalbanken-data",
status: "requires_portal_or_custom_client",
docsUrl: "https://www.nationalbanken.dk/da/statistik/find_statistik/Pages/default.aspx",
};// Integration Notice: Danske Bank Developer Portal
// Category: API | Access: restricted | Auth: restricted
// Refer to documentation: https://developer.danskebank.com
export const danske-bank-apiConfig = {
name: "danske-bank-api",
status: "requires_portal_or_custom_client",
docsUrl: "https://developer.danskebank.com",
};// Integration Notice: Danske Bank Developer Portal
// Category: API | Access: restricted | Auth: restricted
// Refer to documentation: https://developers.danskebank.com
export const danske-bankConfig = {
name: "danske-bank",
status: "requires_portal_or_custom_client",
docsUrl: "https://developers.danskebank.com",
};Har du brug for at generere MCP-servere eller køre browserautomatisering med LlamaIndex?
Turn entire websites and portals into clean, LLM-ready Markdown
Firecrawl crawls, handles JavaScript rendering, bypasses anti-bot barriers, and outputs clean Markdown structured for AI agent ingestion.
Open-source, blazing fast asynchronous LLM web crawler
Crawl4AI is an open-source, speed-optimized asynchronous web crawler that generates structured Markdown and JSON graphs for AI models.
Zero-setup URL-to-Markdown proxy for any web page
Prepend `r.jina.ai/` to any URL to instantly convert the page into clean, LLM-ready markdown with zero authentication or setup.
Use the LlamaIndex custom reader functions provided on this page to index Danish XML, JSON, or REST API responses into your LlamaIndex VectorStoreIndex.