# Unsplash Mountain Photo Search

**Use case:** 

Get structured data for unsplash mountain photo search with Unsplash Image Search Scraper. Export results for research, monitoring, or automation.

## Input

```json
{
  "queries": [
    "mountain"
  ],
  "orderBy": "relevant",
  "orientation": "any",
  "color": "any",
  "contentFilter": "high",
  "maxResultsPerQuery": 10,
  "maxPagesPerQuery": 1
}
```

## Output

```json
{
  "image_thumbnail_url": {
    "label": "Preview",
    "format": "image"
  },
  "alt_description": {
    "label": "Description",
    "format": "text"
  },
  "photographer_name": {
    "label": "Photographer",
    "format": "text"
  },
  "likes": {
    "label": "Likes",
    "format": "number"
  },
  "width": {
    "label": "Width",
    "format": "number"
  },
  "height": {
    "label": "Height",
    "format": "number"
  },
  "matched_queries": {
    "label": "Queries",
    "format": "array"
  },
  "rank": {
    "label": "Rank",
    "format": "number"
  },
  "url": {
    "label": "Unsplash URL",
    "format": "link"
  },
  "image_regular_url": {
    "label": "Image URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Unsplash Image Search Scraper - Photos and Creators](https://apify.com/benthepythondev/unsplash-image-search-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/benthepythondev/unsplash-image-search-scraper) to learn more, explore other use cases, and run it yourself.