# Extract Public Records from a Radaris URL

**Use case:** 

Process a Radaris name-search URL and export structured public people matches with source profile links and attributed details.

## Input

```json
{
  "searches": [
    {
      "firstName": "John",
      "lastName": "Smith",
      "state": "IN"
    }
  ],
  "startUrls": [
    {
      "url": "https://radaris.com/p/John/Smith/"
    }
  ],
  "maxItems": 10
}
```

## Output

```json
{
  "fullName": {
    "label": "Name",
    "format": "string"
  },
  "age": {
    "label": "Age",
    "format": "integer"
  },
  "birthYear": {
    "label": "Birth year",
    "format": "integer"
  },
  "currentLocation": {
    "label": "Current location",
    "format": "string"
  },
  "aliases": {
    "label": "Aliases",
    "format": "array"
  },
  "relatives": {
    "label": "Relatives",
    "format": "array"
  },
  "previousLocations": {
    "label": "Previous locations",
    "format": "array"
  },
  "profileUrl": {
    "label": "Profile",
    "format": "string"
  },
  "searchUrl": {
    "label": "Search",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Radaris Scraper](https://apify.com/automation-lab/skip-trace-people-property-enrichment) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/skip-trace-people-property-enrichment) to learn more, explore other use cases, and run it yourself.