scala-score

June 6, 2026 · View on GitHub

PyPI License Companies

Python SDK for S.C.A.L.A. Score API — search 244M+ companies across 40+ countries.

Install

pip install scala-score

Quick Start

from scala_score import ScalaScore

score = ScalaScore("your-api-key")

# Search companies
results = score.search("Ferrero", country="IT")
for company in results.companies:
    print(f"{company.name}{company.city} — Revenue: €{company.revenue:,.0f}")

# Lookup by VAT number
company = score.lookup("IT02727330014")
print(f"{company.name}: health score {company.health_score}/100")

# Generate a report
report = score.report("IT02727330014", report_type="pro")
print(f"Report: {report.download_url}")

# Check credits
credits = score.credits()
print(f"Remaining: {credits['credits_remaining']} credits")

# Database stats
stats = score.stats()
print(f"Total companies: {stats['total_companies']:,}")

Search with Filters

# Find active restaurants in Milan
results = score.search(
    "ristorante",
    country="IT",
    nace="56.10",      # NACE code for restaurants
    status="active",
    limit=50
)

# Find construction companies in Germany
results = score.search("bau", country="DE", nace="41", limit=20)

# Find tech companies in Spain
results = score.search("tecnología", country="ES", nace="62.01")

Company Data Fields

Each company includes (when available):

FieldDescription
nameCompany legal name
countryISO 2-letter code
vat_numberVAT / Tax ID
address, city, postal_codeLocation
nace_code, nace_descriptionIndustry classification
legal_formSRL, GmbH, Ltd, SA, etc.
statusActive / Inactive / Dissolved
revenueEstimated annual revenue (€)
employeesEmployee count
health_scoreFinancial health (0-100)
foundedIncorporation date
website, phone, emailContact info

Coverage

244M+ companies across 40+ countries including:

CountryCompaniesSource
🇮🇹 Italy6.2MCamera di Commercio
🇩🇪 Germany5.4MHandelsregister
🇫🇷 France29.5MSIRENE/INSEE
🇬🇧 UK5.8MCompanies House
🇪🇸 Spain3.7MBORME
🇺🇸 USA35M+SEC + State registries
🇳🇱 Netherlands2.8MKVK
+ 33 more countries...Government registries

Pricing

PlanPriceCredits/moPer lookup
Starter€19/mo500€0.038
Growth€49/mo5,000€0.010
Enterprise€149/mo50,000€0.003

Compare: Dun & Bradstreet charges €2-5 per lookup. ZoomInfo starts at $15K/year.

Get API Key

  1. Sign up at app.get-scala.com
  2. Go to Score > API
  3. Generate your key
  4. pip install scala-score and start searching

License

MIT