# Extract SPF and TXT Records for Fintech Domains

**Use case:** 

Retrieve SPF and TXT DNS records for major fintech companies. Includes data for domains like stripe.com, paypal.com, and more.

## Input

```json
{
  "domains": [
    "stripe.com",
    "paypal.com",
    "square.com",
    "braintree.com",
    "adyen.com",
    "klarna.com",
    "revolut.com",
    "wise.com",
    "monzo.com",
    "starling.com"
  ],
  "recordTypes": [
    "TXT",
    "MX"
  ],
  "maxConcurrency": 10,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "domain": {
    "label": "Domain",
    "format": "text"
  },
  "recordType": {
    "label": "Type",
    "format": "text"
  },
  "value": {
    "label": "Value",
    "format": "text"
  },
  "ttl": {
    "label": "TTL (s)",
    "format": "number"
  },
  "resolver": {
    "label": "Resolver",
    "format": "text"
  },
  "checkedAt": {
    "label": "Checked At",
    "format": "datetime"
  }
}
```

## About this Actor

This example demonstrates how to use [Bulk DNS Records Lookup - A, MX, TXT, NS, CNAME](https://apify.com/logiover/bulk-dns-records-lookup) with a specific input configuration. Visit the [Actor detail page](https://apify.com/logiover/bulk-dns-records-lookup) to learn more, explore other use cases, and run it yourself.