Discover/Scoris API
live

Scoris APIscoris.lt

Access Lithuanian company profiles, financial reports, salary data, and rankings via the Scoris.lt API. 6 endpoints covering search, financials, and top-company lists.

This API takes change requests — .
Endpoint health
verified 6d ago
get_company_basic_info
get_company_financials
get_top_companies
filter_companies
search_companies
6/6 passing latest checkself-healing
Endpoints
6
Updated
28d ago

What is the Scoris API?

The Scoris.lt API provides access to Lithuanian business intelligence across 6 endpoints, covering company search, financial statements, employee salary trends, and curated rankings. The get_company_financials endpoint returns multi-year financial data and VMI tax arrears history, while get_top_companies surfaces ranked lists across categories such as largest companies, most profitable, and highest average salaries.

Try it
Search term (e.g. company name or keyword)
api.parse.bot/scraper/4666a00b-6a07-4bd2-88aa-0b2b13988071/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/4666a00b-6a07-4bd2-88aa-0b2b13988071/search_companies?query=MAXIMA' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace scoris-lt-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.scoris_lithuanian_company_database_api import Scoris, CompanySize, CompanyNotFound

scoris = Scoris()

# Search for companies by name
for summary in scoris.companysummaries.search(query="MAXIMA"):
    print(summary.id, summary.label, summary.address)

# Get detailed company info by code
company = scoris.companies.get(company_code="123033512")
print(company.name, company.vat_code, company.address)

# Navigate from summary to full detail
detail = summary.details()
print(detail.full_title, detail.shareholders)

# Access financials for a company
report = company.financials()
print(report.sections)

# Access salary info
salary = company.employees_salaries()
print(salary.employee_count, salary.average_salary)

# Filter companies by size using the enum
for fc in scoris.filteredcompanies.filter(size=CompanySize.STAMBI):
    print(fc.code, fc.name, fc.rating)

# Get top rankings
ranking = scoris.rankings.get()
print(ranking.rankings)
All endpoints · 6 totalmissing one? ·

Search for Lithuanian companies by name or keyword. Returns up to 10 matching results with company IDs, names, VAT codes, and addresses. The search is fuzzy and matches partial names. Each result's id field serves as the company_code for other endpoints.

Input
ParamTypeDescription
queryrequiredstringSearch term (e.g. company name or keyword)
Response
{
  "type": "object",
  "fields": {
    "results": "array of company match objects with id, label, value, vat, and address fields"
  },
  "sample": {
    "data": {
      "results": [
        {
          "id": 123033512,
          "vat": "LT230335113",
          "label": "MAXIMA LT, UAB",
          "value": 123033512,
          "address": "Vilnius, Naugarduko g. 84, LT-03160"
        }
      ]
    },
    "status": "success"
  }
}

About the Scoris API

Company Search and Profiles

The search_companies endpoint accepts a query string and returns an array of matches, each with an id, label, and address. That id (or the registration company_code) feeds into get_company_basic_info, which returns the company's registered address, VAT code, a shareholders object mapping ownership categories to counts, and an array of similar_companies with names, codes, and URLs.

Financial Data and Tax Arrears

get_company_financials takes a company_code and returns a response keyed by section title — for example, 'MAXIMA LT- Company finances' and 'MAXIMA LT- VMI tax arrears'. Each section is an array of objects mapping column headers to values, giving you multi-year balance sheet and income statement rows alongside official VMI tax debt history in a single call.

Salary and Headcount Trends

get_company_employees_salaries returns an average_salary object mapping year to salary in euros and an employee_count object mapping period labels to headcount figures. It also includes summary_stats and sections arrays that describe the data headers, making it straightforward to reconstruct the time series for a given company.

Filtering and Rankings

The filter_companies POST endpoint supports filtering by size (Stambi, Vidutinė, Smulki, Mikro), status (e.g. Veikiantis for active), and a name_part fragment. The response includes a rowsCount field for pagination planning and per-row fields such as JA_kodas, JA_pavadinimas, pvm, and scoris_reitingas. get_top_companies requires no inputs and returns a rankings object mapping category names to arrays of companies with their metric values.

Reliability & maintenanceVerified

The Scoris API is a managed, monitored endpoint for scoris.lt — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when scoris.lt changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official scoris.lt API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
6d ago
Latest check
6/6 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Screen Lithuanian suppliers by filtering active companies of a specific size with filter_companies and checking their scoris_reitingas.
  • Pull multi-year revenue and tax arrears data via get_company_financials to assess credit risk before entering a contract.
  • Track average salary trends for a competitor using get_company_employees_salaries to inform compensation benchmarking.
  • Build a Lithuanian company directory by combining search_companies results with full profiles from get_company_basic_info.
  • Identify top-performing Lithuanian companies in specific categories using get_top_companies for market research or investment screening.
  • Monitor shareholder structure changes by periodically querying get_company_basic_info and diffing the shareholders field.
  • Enrich a CRM with Lithuanian company metadata by resolving company names to codes via search_companies and fetching VAT codes and addresses.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Scoris.lt offer an official developer API?+
Scoris.lt does not publish a documented public developer API. The data exposed here is accessed through the Parse API layer described on this page.
What does the `filter_companies` endpoint return, and how does pagination work?+
The response includes a data array of company objects with fields JA_kodas (registration code), JA_pavadinimas (name), pvm (VAT number), and scoris_reitingas (Scoris rating), plus a columns array of display names and a rowsCount integer showing the total number of matching records. Use rowsCount to determine how many pages of results exist, then adjust your filter parameters accordingly.
Does the API return contact details such as phone numbers or email addresses for companies?+
Not currently. get_company_basic_info returns registration details, address, VAT code, shareholders, and similar companies, but no phone or email fields. You can fork this API on Parse and revise it to add an endpoint targeting those contact data sections if Scoris.lt surfaces them.
What geographic coverage does this API have?+
All data originates from Scoris.lt, which covers Lithuanian-registered companies only. Companies registered in other countries are not included in search results or rankings.
Does `get_company_financials` include subsidiary or consolidated financial statements?+
The endpoint returns sections keyed by company name — such as 'MAXIMA LT- Company finances' — reflecting the data Scoris.lt presents for that registration code. Whether a given section represents consolidated or standalone figures depends on how Scoris.lt classifies the company; the API does not add a separate flag. You can fork this API on Parse and revise it to parse or label the section titles if you need to distinguish the two.
Page content last updated . Spec covers 6 endpoints from scoris.lt.
Related APIs in B2b DirectorySee all →
rekvizitai.vz.lt API
Search and access detailed information about Lithuanian companies, including their profiles, contact details, and multi-year financial records from the official rekvizitai.vz.lt directory. Get comprehensive company data to research business backgrounds, track financial history, and verify company details all in one place.
opencorporates.com API
Access comprehensive company registration data, officer details, and filing histories from OpenCorporates across jurisdictions worldwide to research businesses and their leadership. Search for specific companies or officers, retrieve detailed corporate information, and explore filing records to support due diligence, compliance checks, and business intelligence.
thecompaniesapi.com API
Enrich your company database with 80+ data points per company, search by industry or company details, and discover email patterns to drive your business intelligence. Find verified company information, get pricing data, and ask contextual questions about any organization to fuel your sales, marketing, or research efforts.
developer.company-information.service.gov.uk API
Search for UK registered companies and retrieve detailed information including company profiles, officer names, and their dates of birth. Access comprehensive corporate records directly from the official Companies House register to verify business details and identify key personnel.
justice.cz API
Look up official information about Czech companies including their legal status, representatives, and shareholders directly from the government's ARES registry and Insolvency Register. Search for companies by name or ID number to instantly access verified business details and check if they're involved in insolvency proceedings.
regnskapstall.no API
Search Norwegian companies and retrieve their financial statements, ownership details, roles, competitors, and regulatory announcements all in one place. Get comprehensive company overviews including registration data and financial metrics to research businesses and track new market entries.
rusprofile.ru API
Search Russian companies and retrieve their detailed profiles including financial information, registration details, and director information from Rusprofile's database. Look up director credentials by their tax identification number and discover company relationships and links.
allabolag.se API
Search and retrieve detailed information about Swedish companies, including their industry classifications and historical financial records from annual reports. Access comprehensive company profiles to analyze financial performance and business data for any registered Swedish business.