# Batch Enrich Real Estate Prospect Names

**Use case:** 

Batch-match prospect names to public Radaris records and export age, alias, relative, address-history, and profile signals.

## Input

```json
{
  "searches": [
    {
      "firstName": "John",
      "lastName": "Smith"
    },
    {
      "firstName": "Michael",
      "lastName": "Johnson"
    }
  ],
  "startUrls": [
    {
      "url": "https://radaris.com/p/John/Smith/?ql=IN"
    }
  ],
  "maxItems": 50
}
```

## 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.