# English Tatoeba Sentence Corpus

**Use case:** 

Extract Tatoeba Sentence Corpus data filtered by English. Export structured results ready for analysis, lead generation, or research.

## Input

```json
{
  "maxItems": 10,
  "query": "hello",
  "fromLanguage": "eng"
}
```

## Output

```json
{
  "sentenceId": {
    "label": "Sentence ID",
    "format": "number"
  },
  "text": {
    "label": "Sentence",
    "format": "text"
  },
  "language": {
    "label": "Lang Code",
    "format": "text"
  },
  "languageName": {
    "label": "Language",
    "format": "text"
  },
  "direction": {
    "label": "Direction",
    "format": "text"
  },
  "correctness": {
    "label": "Correctness",
    "format": "number"
  },
  "license": {
    "label": "Licence",
    "format": "text"
  },
  "contributor": {
    "label": "Contributor",
    "format": "text"
  },
  "hasAudio": {
    "label": "Has Audio",
    "format": "boolean"
  },
  "audioUrls": {
    "label": "Audio",
    "format": "object"
  },
  "translationCount": {
    "label": "Translation Count",
    "format": "number"
  },
  "translations": {
    "label": "Translations",
    "format": "object"
  },
  "url": {
    "label": "Page",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Collected",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Tatoeba Sentence Corpus Scraper](https://apify.com/parseforge/tatoeba-sentence-corpus-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/tatoeba-sentence-corpus-scraper) to learn more, explore other use cases, and run it yourself.