# RapidAPI Translation API Extractor Example

**Use case:** 

Extract a RapidAPI translation search page into structured API titles, providers, pricing labels, profile URLs, and ranking data.

## Input

```json
{
  "searchTerms": [],
  "startUrls": [
    {
      "url": "https://rapidapi.com/search?term=translation&sortBy=ByRelevance"
    }
  ],
  "maxItems": 20,
  "maxScrolls": 1,
  "includeApiDetails": false
}
```

## Output

```json
{
  "title": {
    "label": "API title",
    "format": "text"
  },
  "providerName": {
    "label": "Provider",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "pricing": {
    "label": "Pricing",
    "format": "text"
  },
  "profileUrl": {
    "label": "Profile URL",
    "format": "link"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "popularityScore": {
    "label": "Popularity",
    "format": "number"
  },
  "averageLatencyMs": {
    "label": "Latency ms",
    "format": "number"
  },
  "averageSuccessRate": {
    "label": "Success rate",
    "format": "number"
  },
  "searchTerm": {
    "label": "Search term",
    "format": "text"
  },
  "rank": {
    "label": "Rank",
    "format": "number"
  },
  "totalResults": {
    "label": "Total results",
    "format": "number"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [RapidAPI Scraper](https://apify.com/automation-lab/rapidapi-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/rapidapi-scraper) to learn more, explore other use cases, and run it yourself.