500px Scraper avatar
500px Scraper

Pricing

$0.15 / 1,000 results

Go to Apify Store
500px Scraper

500px Scraper

Extract high-quality images from 500px.com, the premier photography community. Get image metadata including titles, descriptions, multiple sizes, and direct links to photographer pages with automatic pagination support.

Pricing

$0.15 / 1,000 results

Rating

0.0

(0)

Developer

Conduit

Conduit

Maintained by Community

Actor stats

0

Bookmarked

3

Total users

2

Monthly active users

5 days ago

Last modified

Share

πŸ“Έ 500px Image Scraper

Extract high-quality images from 500px.com, the premier photography community. Get image metadata including titles, descriptions, multiple sizes, and direct links to photographer pages with automatic pagination support.


✨ Why Use 500px Image Scraper?

  • ⚑ Fast & Efficient - Direct GraphQL API access delivers results in seconds
  • 🎯 Reliable Data - Extracts complete metadata including multiple image sizes
  • πŸ“ˆ Scalable - Scrape from 1 to 1000 images with automatic pagination (100 per page)
  • 🎨 High Quality - Access both small (600px) and large (2048px) image versions
  • πŸ“Š Clean Output - Structured JSON data ready for analysis, galleries, or integration

πŸ“₯ Input Parameters

ParameterTypeRequiredDefaultDescription
searchQueryString❌ No"landscape photography"Search term to find images (e.g., "landscape photography", "wildlife", "portrait")
sortString❌ NorelevanceSort order: relevance, pulse (popular), or newest
maxResultsInteger❌ No100Maximum number of images to scrape (range: 1-1000)
proxyConfigurationObject❌ No{ useApifyProxy: true }Proxy settings to avoid rate limiting

Note: 500px returns 100 results per page. The Actor automatically handles pagination to reach your desired maxResults.


πŸ“– Usage Examples

Search for "landscape photography" and get 100 results:

{
"searchQuery": "landscape photography",
"sort": "relevance",
"maxResults": 100
}

Get the most popular wildlife photos:

{
"searchQuery": "wildlife",
"sort": "pulse",
"maxResults": 200
}

Example 3: Latest Uploads

Find the newest portrait photography:

{
"searchQuery": "portrait",
"sort": "newest",
"maxResults": 150
}

Example 4: Specific Theme

Collect images for a specific theme or project:

{
"searchQuery": "minimalist architecture",
"sort": "relevance",
"maxResults": 300
}

πŸ“€ Output Data

Each image result includes:

FieldTypeDescription
idStringUnique image identifier
legacyIdStringLegacy image ID for compatibility
titleStringCombined image name and description
nameStringImage name/title
descriptionStringImage description
urlStringDirect link to the image page on 500px
imageUrlLargeStringLarge image URL (max 2048px longest edge)
imageUrlSmallStringSmall image URL (max 600px longest edge)
widthIntegerOriginal image width in pixels
heightIntegerOriginal image height in pixels
widthLargeIntegerLarge version width
heightLargeIntegerLarge version height
widthSmallIntegerSmall version width
heightSmallIntegerSmall version height

Sample Output

{
"id": "1234567890",
"legacyId": "987654321",
"title": "Sunset Over Mountains: A breathtaking view of golden hour in the Alps",
"name": "Sunset Over Mountains",
"description": "A breathtaking view of golden hour in the Alps",
"url": "https://500px.com/photo/1234567890/sunset-over-mountains",
"imageUrlLarge": "https://drscdn.500px.org/photo/1234567890/m=2048/v2?sig=...",
"imageUrlSmall": "https://drscdn.500px.org/photo/1234567890/m=600/v2?sig=...",
"width": 4000,
"height": 3000,
"widthLarge": 2048,
"heightLarge": 1536,
"widthSmall": 600,
"heightSmall": 450
}

Data is delivered in clean JSON format, ready to download as JSON, CSV, Excel, or integrate via API.


❓ FAQ

Q: How many images can I scrape?
A: You can scrape between 1 and 1000 images per run. For larger datasets, run the Actor multiple times with different search queries.

Q: Do I need proxies?
A: No, but using Apify Proxy is highly recommended to avoid rate limiting from 500px.

Q: Can I download the actual image files?
A: The Actor provides direct URLs to the images. You can use these URLs to download the files separately or integrate with another Actor for downloading.

Q: Can I filter by photographer or category?
A: Currently, the Actor supports search queries and sorting. You can include photographer names in your search query (e.g., "landscape by photographer_name").