Official Swiss commercial register via Zefix (Federal Office of Justice)
Official Swiss commercial register via Zefix (Federal Office of Justice). Search: ?q=swisscom (company name, 3+ chars) returns matches with UID, legal form and status. Profile: ?uid=CHE-105.909.036 (or ?chid=CH-...) returns the full record: legal form, status, canton, registered seat, purpose, capital and the official Zefix/cantonal excerpt links. Optional canton, active_only, limit (1-20). Sole-proprietor home addresses withheld (GDPR). 24h cache.
5000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-27
updated
Provider
data.greeneris.io · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x6ab8efe305cce67daa48c97bde29c04402822dff",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "5000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"limit": 1,
"q": "swisscom"
},
"type": "http"
},
"output": {
"example": {
"count": 1,
"results": [
{
"address": {
"care_of": null,
"city": "Bern",
"house_number": "6",
"po_box": null,
"postal_code": "3050",
"street": "Alte Tiefenaustrasse"
},
"canton": "BE",
"cantonal_excerpt_url": "https://be.chregister.ch/cr-portal/auszug/auszug.xhtml?uid=CHE-102.753.938",
"capital": null,
"chid": "CH03580182127",
"deletion_date": null,
"ehraid": 434694,
"legal_form": "Public sector institution",
"legal_form_id": 8,
"legal_seat": "Ittigen",
"name": "Swisscom AG",
"natural_person": false,
"purpose": "Die Gesellschaft bezweckt, im In- und Ausland Fernmelde- und Rundfunkdienste sowie damit zusammenhaengende Produkte ...",
"sogc_date": "2026-06-30",
"status": "ACTIVE",
"uid": "CHE102753938",
"zefix_url": "https://www.zefix.admin.ch/en/search/entity/list?name=CHE102753938&directLink=true"
}
],
"source": "Zefix (zefix.admin.ch), Swiss Federal Office of Justice, official central business name index; sole-proprietor address withheld (GDPR)"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"properties": {
"active_only": {
"default": true,
"description": "false = include cancelled companies in search",
"type": "boolean"
},
"canton": {
"description": "Filter search by 2-letter canton, e.g. ZH",
"type": "string"
},
"chid": {
"description": "Swiss CH-ID, e.g. CH-020.3.926.598-9",
"type": "string"
},
"limit": {
"default": 5,
"description": "Max search results (1-20)",
"type": "integer"
},
"q": {
"description": "Company name to search (3+ chars, substring)",
"type": "string"
},
"uid": {
"description": "Swiss UID for the full record, e.g. CHE-105.909.036",
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://data.greeneris.io/v1/ch/company" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://data.greeneris.io/v1/ch/company");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://data.greeneris.io/v1/ch/company")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/3977.json, and this resource appears in /discovery/resources and /discovery/search.