# RapidAPI Weather API Scraper Example

**Use case:** 

Scrape RapidAPI weather API listings with provider names, pricing labels, URLs, ranks, and quality scores for API research.

## Input

```json
{
  "searchTerms": [
    "weather"
  ],
  "startUrls": [
    {
      "url": "https://rapidapi.com/search?term=weather&sortBy=ByRelevance"
    }
  ],
  "maxItems": 25,
  "maxScrolls": 2,
  "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.