# Create a visual asset catalog from Unsplash search results

**Use case:** 

Export a compact, source-attributed catalog of public Unsplash images for internal reference and curation work.

## Input

```json
{
  "queries": [
    "mountains"
  ],
  "maxItemsPerQuery": 10,
  "maxTotalItems": 10,
  "orientation": "any",
  "color": "any",
  "orderBy": "relevant"
}
```

## Output

```json
{
  "id": {
    "label": "Photo ID",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "photoUrl": {
    "label": "Photo URL",
    "format": "string"
  },
  "imageUrlRegular": {
    "label": "Regular image URL",
    "format": "string"
  },
  "photographerName": {
    "label": "Photographer",
    "format": "string"
  },
  "photographerUsername": {
    "label": "Photographer username",
    "format": "string"
  },
  "width": {
    "label": "Width",
    "format": "integer"
  },
  "height": {
    "label": "Height",
    "format": "integer"
  },
  "color": {
    "label": "Color",
    "format": "string"
  },
  "likes": {
    "label": "Likes",
    "format": "integer"
  },
  "query": {
    "label": "Query",
    "format": "string"
  },
  "rank": {
    "label": "Rank",
    "format": "integer"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

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