v1

latestOpenAPI 3.1.02026-07-241695611.0 MB
Business

Get Business Registrations

Retrieve a business's corporate registrations by its UUID.

get/businesses/{id}/registrations

Path parameters

idstring uuid required

The unique identifier of the business to retrieve registrations for.

Example:412a49b5-7466-426b-bf1e-081b00b54576

The unique identifier of the business to retrieve registrations for.

Response

Response

idstring uuid required

The unique identifier of the corporate registration.

namestring required

The name on the registration.

issue_datestring date nullable

The date the registration was issued.

inactive_datestring date nullable

The date the registration became inactive.

dissolution_datestring date nullable

The date the registration was dissolved in the given state.

file_numberstring required

The file number of the registration.

state'AL' | 'AK' | 'AZ' | 'AR' | 'CA' | 'CO' | 'CT' | 'DE' | 'DC' | 'FL' | 'GA' | 'HI' | 'ID' | 'IL' | 'IN' | 'IA' | 'KS' | 'KY' | 'LA' | 'ME' | 'MD' | 'MA' | 'MI' | 'MN' | 'MS' | 'MO' | 'MT' | 'NE' | 'NV' | 'NH' | 'NJ' | 'NM' | 'NY' | 'NC' | 'ND' | 'OH' | 'OK' | 'OR' | 'PA' | 'RI' | 'SC' | 'SD' | 'TN' | 'TX' | 'UT' | 'VT' | 'VA' | 'WA' | 'WV' | 'WI' | 'WY' | 'PR' | 'VI' | 'AE' | 'AA' | 'AP' | 'GU' | 'AS' required
registration_type'foreign' | 'domestic' | 'unknown'

Status of the corporate registration filing.

status'active' | 'inactive' | 'unknown' required

Status field indicating whether the corporate registration filing is active or inactive.

standingstring nullable

The standing of the registration.

Example response

[
  {
    "name": "Garcia, Hernandez and Woods",
    "issue_date": "2024-01-01",
    "inactive_date": "2024-06-01",
    "dissolution_date": "2024-06-01",
    "file_number": "867124",
    "address": {
      "street": "913 Hendrix Gardens Suite 492",
      "city": "Jasonfurt",
      "zip": "19773",
      "latitude": 38.03012,
      "longitude": 78.47665
    },
    "standing": "In Good Standing",
    "registered_agent": {
      "name": "Jeremy Crawford",
      "address": {
        "street": "913 Hendrix Gardens Suite 492",
        "city": "Jasonfurt",
        "zip": "19773",
        "latitude": 38.03012,
        "longitude": 78.47665
      }
    },
    "officers": [
      {
        "name": "Tyler Johnson",
        "titles": [
          "CEO",
          "Founder"
        ]
      }
    ]
  }
]