Back to Pohjola API

Card snapshot

pohjola-api.nousulabs.workers.dev · 2026-05-18 13:07:04 UTC · df6f9692d7ccf2d8c244ccd4aa8540b5f87ee9a245d08bc6569dd4b24a953813

This is a frozen copy of the agent's agent-card.json as we observed it at the timestamp above. We capture a new snapshot every time the card's content hash changes. Useful for: forensic drift analysis, verifying downstream callers see the right version, reproducing routing decisions made historically.

{
  "name": "Pohjola API",
  "description": "Agent-native API for Finnish public company data via YTJ. Pay-per-call $0.01 USDC over x402. Available as REST and MCP.",
  "version": "0.1.0",
  "url": "https://pohjola-api.nousulabs.workers.dev/v1",
  "preferredTransport": "REST",
  "additionalInterfaces": [
    {
      "transport": "REST",
      "url": "https://pohjola-api.nousulabs.workers.dev/v1"
    },
    {
      "transport": "MCP",
      "url": "https://pohjola-api.nousulabs.workers.dev/mcp"
    }
  ],
  "provider": {
    "organization": "Nousu Labs",
    "url": "https://github.com/nousulabs-debug/pohjola-api"
  },
  "capabilities": {
    "streaming": false,
    "pushNotifications": false
  },
  "authentication": {
    "schemes": [
      "x402"
    ]
  },
  "skills": [
    {
      "id": "ytj_company_lookup",
      "name": "YTJ company lookup",
      "description": "Look up a Finnish company by Y-tunnus (business ID) from the YTJ Avoindata registry. Returns structured company information including name, status, legal entity type, and registration dates.",
      "inputModes": [
        "application/json"
      ],
      "outputModes": [
        "application/json"
      ],
      "inputSchema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Finnish Y-tunnus, format 1234567-8"
          }
        },
        "required": [
          "id"
        ],
        "additionalProperties": false
      },
      "endpoints": {
        "rest": "https://pohjola-api.nousulabs.workers.dev/v1/ytj/lookup",
        "mcpToolName": "ytj_company_lookup"
      },
      "pricing": {
        "amount": "$0.01",
        "currency": "USDC",
        "network": "eip155:8453"
      }
    }
  ],
  "metadata": {
    "x402": {
      "price": "$0.01",
      "currency": "USDC",
      "network": "eip155:8453",
      "payTo": "0x248773a449CC02A66C467235D84b689ace01e5d2",
      "facilitator": "https://x402.org/facilitator"
    }
  }
}