APIVine
HomeAPIsDocsContact
Sign InBrowse APIs
APIVine

A curated collection of reliable APIs for developers. All APIs available through RapidAPI with free tiers for testing.

API Categories

  • Government & Public Data
  • Real Estate
  • Business & Location
  • Finance & Markets
  • E-commerce & Products

Resources

  • Browse APIs
  • Documentation
  • RapidAPI Hub
  • Request an API

Company

  • Contact Us
  • Privacy Policy
  • Terms of Service
  • Imprint

© 2026 APIVine by Kretronik GmbH. All rights reserved.

APIVine
HomeAPIsDocsContact
Sign InBrowse APIs
  1. Home
  2. /
  3. APIs
  4. /
  5. US Business Entity Lookup API

US Business Entity Lookup API

Featured

Look up any LLC or corporation in a US state registry — status, type, formation date, jurisdiction, and registered agent — sourced from official Secretary of State open data.

Government & Public Datav1.0NY Department of StateActive Corporations (data.ny.gov)
Get API on RapidAPI
Free tier: Free tier available

About this API

The US Business Entity Lookup API unifies state Secretary of State corporation and LLC registries behind one consistent interface. Search a state registry by entity name to find every matching company, or resolve a single entity by its state registry ID to get its full record — active status, entity type, formation date, jurisdiction of formation, home county, and registered/process agent with address. Ideal for KYC and due diligence, real estate research (identifying the people behind property-owning LLCs), credit underwriting, fraud detection, and lead enrichment. Every state returns the identical response shape, so you integrate once and get new states for free. Coverage currently spans New York, with more states added over time; call the /states endpoint for the live list. Fields a state does not publish openly — such as officers/directors — are returned as null rather than omitted, keeping the response shape stable across states.

Endpoints

GET/entity/states

List Supported States

Return the states currently supported. Use the returned slug values for the state parameter on /search and /lookup.

Example Response

json
{
  "count": 1,
  "states": [
    { "slug": "ny", "name": "New York", "state": "NY" }
  ]
}
GET/entity/search

Search Entities by Name

Search a state corporation/LLC registry by entity name. The name is matched as a case-insensitive substring, so a partial name may return several entities.

Parameters

NameTypeRequiredDescription
namestringRequiredEntity name to search (partial match, e.g. "EMPIRE STATE REALTY")
statestringRequiredState slug from /entity/states (e.g. "ny")
limitnumberOptionalMax matching entities to return (1-100, default 25)

Example Response

json
{
  "state": "ny",
  "query": "EMPIRE STATE REALTY",
  "count": 1,
  "results": [
    {
      "state": "NY",
      "registry_id": "3177151",
      "entity_name": "EMPIRE STATE REALTY & MANAGEMENT OF BROOKLYN, LLC",
      "entity_type": "DOMESTIC LIMITED LIABILITY COMPANY",
      "status": "Active",
      "formation_date": "2005-03-15",
      "jurisdiction": "New York",
      "county": "New York",
      "registered_agent": "EMPIRE STATE REALTY & MANAGEMENT OF BROOKLYN, LLC",
      "registered_agent_address": "89 HARRISON AVENUE, BROOKLYN NY 11206",
      "officers": null
    }
  ]
}
GET/entity/lookup

Entity Lookup by Registry ID

Resolve a single business entity by its state registry ID (file number / NY DOS ID). Returns the full normalized record, or 404 if no entity has that ID.

Parameters

NameTypeRequiredDescription
registry_idstringRequiredState registry ID / file number (e.g. NY DOS ID "4424185")
statestringRequiredState slug from /entity/states

Example Response

json
{
  "state": "NY",
  "registry_id": "4424185",
  "entity_name": "BUTCHY'S WINE & SPIRITS, INC.",
  "entity_type": "DOMESTIC BUSINESS CORPORATION",
  "status": "Active",
  "formation_date": "2013-06-27",
  "jurisdiction": "New York",
  "county": "Westchester",
  "registered_agent": "BUTCHY'S WINE & SPIRITS, INC.",
  "registered_agent_address": "23 BUSHNEIL PLACE, MOUNT VERNON NY 10550",
  "officers": null
}

Use Cases

  • KYC and customer due diligence
  • Resolving the company behind a property-owning LLC
  • Credit underwriting and counterparty verification
  • Fraud detection and shell-company research
  • Sales lead enrichment and B2B prospecting
  • Legal and journalistic research into corporate entities

Quick Info

Version
1.0
Status
Active
Free Tier
Yes
Free Limit
Free tier available

Data Sources

NY Department of StateActive Corporations (data.ny.gov)
APIVine

A curated collection of reliable APIs for developers. All APIs available through RapidAPI with free tiers for testing.

API Categories

  • Government & Public Data
  • Real Estate
  • Business & Location
  • Finance & Markets
  • E-commerce & Products

Resources

  • Browse APIs
  • Documentation
  • RapidAPI Hub
  • Request an API

Company

  • Contact Us
  • Privacy Policy
  • Terms of Service
  • Imprint

© 2026 APIVine by Kretronik GmbH. All rights reserved.