# Look Up a New York Professional License by License Number

**Use case:** 

Already have the license number? Skip the name search — get the full NYSED record in one direct lookup, across all 116 licensed professions.

## Input

```json
{
  "licenseeNames": [
    {
      "name": "Smith",
      "professionCode": "060"
    }
  ],
  "licenseNumbers": [
    {
      "professionCode": "060",
      "licenseNumber": "231050"
    }
  ],
  "enrichmentLevel": "full",
  "maxResultsPerSearch": 20,
  "requestTimeoutSecs": 30,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "licensee_name": {
    "label": "Licensee name",
    "format": "string"
  },
  "profession": {
    "label": "Profession",
    "format": "string"
  },
  "profession_code": {
    "label": "Profession code",
    "format": "string"
  },
  "license_number": {
    "label": "License number",
    "format": "string"
  },
  "license_status": {
    "label": "License status (normalized)",
    "format": "string"
  },
  "date_of_licensure": {
    "label": "Date of licensure",
    "format": "string"
  },
  "registered_through_date": {
    "label": "Registered through date",
    "format": "string"
  },
  "city_state": {
    "label": "City / state",
    "format": "string"
  },
  "source_url": {
    "label": "Source URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [NYSED Professional License Verification API](https://apify.com/stackrelay/nysed-professional-license-search) with a specific input configuration. Visit the [Actor detail page](https://apify.com/stackrelay/nysed-professional-license-search) to learn more, explore other use cases, and run it yourself.