# Check Federal Court Admissions for a List of Attorneys

**Use case:** 

Paste attorney profile URLs and get each one's admissions as listed: federal district and appeals courts with years, state bars, law school, first year.

## Input

```json
{
  "mode": "url",
  "keywords": [],
  "maxResultsPerKeyword": 3,
  "profileUrls": [
    "https://www.martindale.com/attorney/meredythe-heaton-wilkinson-169065416/",
    "https://www.martindale.com/attorney/franklin-s-montero-168704398/",
    "https://www.martindale.com/attorney/benjamin-john-simmons-168779542/"
  ]
}
```

## Output

```json
{
  "name": {
    "label": "Name",
    "format": "string"
  },
  "lawSchool": {
    "label": "Law school",
    "format": "string"
  },
  "admissions": {
    "label": "Bar admissions",
    "format": "string"
  },
  "firstAdmissionYear": {
    "label": "First admitted",
    "format": "integer"
  },
  "languages": {
    "label": "Languages",
    "format": "string"
  },
  "peerReview": {
    "label": "Peer review",
    "format": "object"
  },
  "profileUrl": {
    "label": "Profile URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Martindale Lawyer Directory API](https://apify.com/johnvc/lawyer-directory-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/johnvc/lawyer-directory-api) to learn more, explore other use cases, and run it yourself.