# Word of the Day Urban Dictionary Definitions

**Use case:** 

Extract Urban Dictionary Definitions data filtered by Word of the Day. Export structured results ready for analysis, lead generation, or research.

## Input

```json
{
  "maxItems": 10,
  "mode": "wordOfTheDay",
  "terms": [
    "yeet",
    "cap",
    "fire",
    "slay",
    "vibes"
  ],
  "definitionsPerTerm": 1,
  "minThumbsUp": 0
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Image",
    "format": "image"
  },
  "defid": {
    "label": "Definition ID",
    "format": "number"
  },
  "word": {
    "label": "Word",
    "format": "text"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "definition": {
    "label": "Definition",
    "format": "text"
  },
  "example": {
    "label": "Example",
    "format": "text"
  },
  "thumbsUp": {
    "label": "Upvotes",
    "format": "number"
  },
  "thumbsDown": {
    "label": "Downvotes",
    "format": "number"
  },
  "score": {
    "label": "Score",
    "format": "number"
  },
  "audioUrl": {
    "label": "Audio",
    "format": "link"
  },
  "soundUrls": {
    "label": "Sounds",
    "format": "object"
  },
  "permalink": {
    "label": "Permalink",
    "format": "link"
  },
  "wordOfTheDayDate": {
    "label": "WOTD Date",
    "format": "date"
  },
  "writtenOn": {
    "label": "Written",
    "format": "date"
  },
  "scrapedAt": {
    "label": "Collected",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Urban Dictionary Definitions Scraper](https://apify.com/parseforge/urbandictionary-definitions-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/urbandictionary-definitions-scraper) to learn more, explore other use cases, and run it yourself.