# Convert Business Card Text to JSON

**Use case:** 

Turn scanned business card text into JSON contact fields for name, title, company, email and phone to fill your CRM fast.

## Input

```json
{
  "texts": [
    "Maria Gomez, VP of Sales, Brightwave Inc, maria@brightwave.com, +1 415 555 0182"
  ],
  "schema": {
    "name": "",
    "title": "",
    "company": "",
    "email": "",
    "phone": ""
  }
}
```

## Output

```json
{
  "_sourceIndex": {
    "label": "Source index",
    "format": "number"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "text"
  },
  "date": {
    "label": "Date",
    "format": "text"
  },
  "truncated": {
    "label": "Truncated",
    "format": "boolean"
  },
  "observedAt": {
    "label": "Converted at",
    "format": "text"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Tool: Any Text to Structured JSON](https://apify.com/scrapers_lat/text-to-json-tool) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapers_lat/text-to-json-tool) to learn more, explore other use cases, and run it yourself.