# Bulk Translate URLs to Spanish with GPT-4o Mini

**Use case:** 

Translate web pages or text to Spanish in bulk using GPT-4o Mini via OpenRouter. Fetches URLs, extracts clean text, and returns translated output with token

## Input

```json
{
  "sp_intended_usage": "Bulk translation of English web content to Spanish for a multilingual content platform",
  "sp_improvement_suggestions": "N/A",
  "sp_contact": "Share your email here...",
  "inputs": [
    {
      "url": "https://apify.com/about"
    },
    {
      "url": "https://apify.com/pricing"
    }
  ],
  "mode": "translate",
  "targetLanguage": "es",
  "style": "formal",
  "maxOutputTokens": 1024,
  "model": "openai/gpt-4o-mini",
  "openrouterApiKey": "***",
  "useCache": true,
  "maxItems": 10
}
```

## Output

```json
{
  "input": {
    "label": "Input",
    "format": "object"
  },
  "mode": {
    "label": "Mode",
    "format": "string"
  },
  "model": {
    "label": "Model",
    "format": "string"
  },
  "output": {
    "label": "Output",
    "format": "string"
  },
  "costUsd": {
    "label": "Costusd",
    "format": "number"
  },
  "cached": {
    "label": "Cached",
    "format": "boolean"
  },
  "status": {
    "label": "Status",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [AI Translator, Summarizer & Rewriter](https://apify.com/jungle_synthesizer/ai-content-translator-summarizer) with a specific input configuration. Visit the [Actor detail page](https://apify.com/jungle_synthesizer/ai-content-translator-summarizer) to learn more, explore other use cases, and run it yourself.