# Business Card OCR to JSON Tool

**Use case:** 

Scan a business card image and pull name, company, title, phone and email into clean JSON for your CRM imports.

## Input

```json
{
  "imageUrls": [
    "https://www.pdfescape.com/media/business-card-sample.png"
  ],
  "fields": [
    "name",
    "company",
    "title",
    "phone",
    "email"
  ]
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Image",
    "format": "link"
  },
  "documentType": {
    "label": "Document type",
    "format": "text"
  },
  "extractedText": {
    "label": "Extracted text",
    "format": "text"
  },
  "fields": {
    "label": "Fields",
    "format": "object"
  },
  "observedAt": {
    "label": "Read at",
    "format": "text"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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