Skip to main content

Python SDK for the VynCo Swiss Corporate Intelligence API

Project description

vynco

Python SDK for the VynCo Swiss Corporate Intelligence API. Access 780,000+ Swiss companies from the commercial register with historical timelines, change tracking, sanctions screening, AI-powered risk analysis, UBO resolution, network graphs, watchlists, webhooks, market-flow analytics, and bulk data exports.

VynCo compliance dashboard

Installation

pip install vynco

Or with uv:

uv add vynco

Quick Start

import vynco

client = vynco.Client("vc_live_your_api_key")

# Search the Swiss commercial register
result = client.companies.list(query="UBS", canton="BS")
uid = result.data.items[0].uid

# Get a single company
company = client.companies.get(uid)
print(f"{company.data.name} ({company.data.legal_form})")

# Full company details with persons, changes, relationships
full = client.companies.get_full(uid)
print(f"Board: {len(full.data.persons)} persons, {len(full.data.recent_changes)} recent changes")

# Historical timeline — every change the company ever made
timeline = client.companies.timeline(uid)
print(f"Timeline: {timeline.data.total_events} events")

# UBO resolution — identify ultimate beneficial owners
ubo = client.companies.ubo(uid)
print(f"UBO persons: {len(ubo.data.ubo_persons)} (chain depth: {ubo.data.chain_depth})")

# Sanctions screening (batch — up to 100 UIDs in one call)
batch = client.screening.batch(uids=[uid, "CHE-101.049.653"])
for r in batch.data.results:
    print(f"  {r.company_name}: {r.risk_level} ({r.total_hits} hits)")

# AI risk score
risk = client.ai.risk_score(uid=uid)
print(f"Risk: {risk.data.overall_score}/100 ({risk.data.risk_level})")

# Industry benchmarking — percentile ranks vs industry peers
bench = client.analytics.benchmark(uid=uid)
for d in bench.data.dimensions:
    print(f"  {d.name}: {d.percentile:.0f}th percentile")

Async Usage

import vynco

async def main():
    async with vynco.AsyncClient("vc_live_your_api_key") as client:
        result = await client.companies.list(query="Novartis")
        print(result.data.items[0].name)

Examples and Notebooks

The examples/ directory contains runnable scripts for common workflows. The notebooks/ directory contains Jupyter notebooks that produce publication-ready charts.

Example Use Case
examples/quickstart.py Search, fetch details, response metadata
examples/due_diligence.py KYC/AML screening, risk score, classification, fingerprint
examples/watchlist_monitor.py Portfolio monitoring with event feed
examples/company_network.py Board members, relationships, hierarchy, graph
examples/bulk_export.py CSV export and async bulk export jobs
examples/historical_timeline.py Chronological company timeline + AI narrative
examples/ubo_resolution.py UBO + ownership chain + batch screening
Notebook Featured Figures
notebooks/swiss_market_analytics.ipynb Canton distribution, auditor market share, RFM segments
notebooks/company_deep_dive.ipynb Company profile card, board, risk score, corporate network
notebooks/compliance_screening.ipynb Batch screening, risk heatmap, compliance dashboard
notebooks/market_flows.ipynb Registrations vs dissolutions, canton migrations
notebooks/similar_companies.ipynb Peer discovery + industry benchmark radar

See examples/README.md and notebooks/README.md for details.

Swiss companies by canton Swiss audit market

API Coverage

20 resource modules covering 100+ endpoints:

Resource Methods
client.health check
client.companies list, get, get_full, count, events, statistics, compare, news, reports, relationships, hierarchy, classification, fingerprint, structure, acquisitions, nearby, timeline, timeline_summary, similar, ubo, media, media_analyze, notes, create_note, update_note, delete_note, tags, create_tag, delete_tag, all_tags, export_csv
client.auditors history, tenures
client.dashboard get
client.screening screen, batch
client.watchlists list, create, delete, companies, add_companies, remove_company, events
client.webhooks list, create, update, delete, test, deliveries
client.exports create, get, download
client.ai dossier, search, risk_score, risk_score_batch
client.api_keys list, create, revoke
client.credits balance, usage, history
client.billing create_checkout, create_portal
client.teams me, create, members, invite_member, update_member_role, remove_member, billing_summary, join
client.changes list, by_company, statistics
client.persons board_members, search, get, network
client.analytics cantons, auditors, cluster, anomalies, rfm_segments, cohorts, candidates, flows, migrations, benchmark
client.dossiers create, list, get, delete, generate
client.graph get, export, analyze
client.alerts list, create, delete
client.ownership trace

New in v3.1

  • Historical timelinecompanies.timeline() and AI narrative via companies.timeline_summary()
  • Similar companiescompanies.similar() scored on industry, canton, capital, legal form, auditor tier
  • UBO resolutioncompanies.ubo() walks the ownership chain and identifies natural persons
  • Ownership traceownership.trace() exposes the full chain with circular-ownership detection
  • Media with sentimentcompanies.media() filtered by positive/neutral/negative
  • Batch operationsscreening.batch() (up to 100 UIDs) and ai.risk_score_batch() (up to 50 UIDs)
  • Market analyticsanalytics.flows(), analytics.migrations(), analytics.benchmark()
  • Person networkpersons.network() for person-centric investigations with co-directors
  • Saved alerts — persistent saved queries with optional webhook delivery
  • Pagination on board_members — pass page= and page_size= (max 500)
  • Typed hierarchyHierarchyResponse now uses HierarchyEntity (was Any)
  • Enriched watchlistsWatchlistCompaniesResponse.companies includes name/status/canton
  • export_csv — new canonical name (export_excel kept as a deprecated alias)

Response Metadata

Every response includes header metadata for credit tracking and rate limiting:

resp = client.companies.get("CHE-101.329.561")

print(f"Request ID: {resp.meta.request_id}")               # X-Request-Id
print(f"Credits used: {resp.meta.credits_used}")            # X-Credits-Used
print(f"Credits remaining: {resp.meta.credits_remaining}")  # X-Credits-Remaining
print(f"Rate limit: {resp.meta.rate_limit_limit}")          # X-RateLimit-Limit
print(f"Rate remaining: {resp.meta.rate_limit_remaining}")  # X-RateLimit-Remaining
print(f"Rate reset: {resp.meta.rate_limit_reset}")          # X-RateLimit-Reset
print(f"Data source: {resp.meta.data_source}")              # X-Data-Source

Configuration

client = vynco.Client(
    api_key="vc_live_xxx",
    base_url="https://vynco.ch/api",  # default
    timeout=30.0,                     # seconds, default
    max_retries=2,                    # default, retries on 429/5xx
)

The API key can also be set via the VYNCO_API_KEY environment variable:

export VYNCO_API_KEY=vc_live_your_api_key
client = vynco.Client()  # reads from VYNCO_API_KEY

The client automatically retries on HTTP 429 (rate limited) and 5xx (server error) with exponential backoff (500ms x 2^attempt). It respects the Retry-After and X-RateLimit-Reset headers when present.

Error Handling

All API errors are mapped to typed exceptions:

try:
    company = client.companies.get("CHE-000.000.000")
except vynco.AuthenticationError:
    print("Invalid API key")
except vynco.InsufficientCreditsError:
    print("Top up credits")
except vynco.ForbiddenError:
    print("Insufficient permissions")
except vynco.NotFoundError as e:
    print(f"Not found: {e.detail}")
except vynco.ValidationError as e:
    print(f"Bad request: {e.detail}")
except vynco.ConflictError:
    print("Resource conflict")
except vynco.RateLimitError:
    print("Rate limited, retry later")
except vynco.ServiceUnavailableError:
    print("AI backend temporarily unavailable")
except vynco.ServerError:
    print("Server error")
except vynco.VyncoError as e:
    print(f"Error ({e.status}): {e.detail}")
Exception HTTP Status
AuthenticationError 401
InsufficientCreditsError 402
ForbiddenError 403
NotFoundError 404
ConflictError 409
ValidationError 400, 422
RateLimitError 429
ServerError 5xx
ServiceUnavailableError 503
ConfigError — (client misconfiguration)

Requirements

  • Python 3.11+
  • httpx (async + sync HTTP)
  • Pydantic v2 (model validation)

Development

uv sync                     # install dependencies
uv run pytest               # run tests
uv run ruff check src/      # lint
uv run ruff format src/     # format
uv run mypy src/            # type check

License

Apache-2.0

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

vynco-3.1.0.tar.gz (4.2 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

vynco-3.1.0-py3-none-any.whl (53.5 kB view details)

Uploaded Python 3

File details

Details for the file vynco-3.1.0.tar.gz.

File metadata

  • Download URL: vynco-3.1.0.tar.gz
  • Upload date:
  • Size: 4.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for vynco-3.1.0.tar.gz
Algorithm Hash digest
SHA256 c7a1907768c82121598bfdd804bb74e5273ba6bdda6c641df45d3ba402175ea6
MD5 120b83da4b4035026bc72246fc6315ce
BLAKE2b-256 c53aefe403e72f6cc97cf3bab24e5f04c8f1243c7444d3c4c2204ece9bbf3293

See more details on using hashes here.

Provenance

The following attestation bundles were made for vynco-3.1.0.tar.gz:

Publisher: publish.yml on VynCorp/vc-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vynco-3.1.0-py3-none-any.whl.

File metadata

  • Download URL: vynco-3.1.0-py3-none-any.whl
  • Upload date:
  • Size: 53.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for vynco-3.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 02a85c5d0ec2036cbf5c14e8e6031dd294e8b13dc5092b979287e879639fa92e
MD5 7c85fe37893ae3dd6662024c3fbf0ddc
BLAKE2b-256 b30cd0f3e7e677bada3b47cf222183df9f5ea155f62cc1c16a90716a9dd0fc74

See more details on using hashes here.

Provenance

The following attestation bundles were made for vynco-3.1.0-py3-none-any.whl:

Publisher: publish.yml on VynCorp/vc-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page