mywed.com APImywed.com ↗
Access MyWed.com data via API: browse top-rated wedding photographers by location, retrieve portfolios, EXIF photo details, and forum posts across 10 endpoints.
curl -X GET 'https://api.parse.bot/scraper/f7f4f4b2-c3fe-4908-97c3-21876fb48a72/get_top_rated_photographers?page=1' \ -H 'X-API-Key: $PARSE_API_KEY'
Get top-rated wedding photographers globally. Returns rich structured data from embedded CATALOG_STATE including pricing, location, and portfolio photos.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number (1-based) |
{
"type": "object",
"fields": {
"page": "integer, current page number",
"per_page": "integer, results per page",
"photographers": "array of photographer objects with id, name, surname, login, pricing, location, and portfolio photos"
},
"sample": {
"data": {
"page": 1,
"per_page": 30,
"photographers": [
{
"id": 239292,
"name": "Gianfranco",
"login": "traetta",
"hasPro": true,
"surname": "Traetta",
"countryId": 70
}
]
},
"status": "success"
}
}About the mywed.com API
The MyWed.com API exposes 10 endpoints covering the full photographer directory on mywed.com, including global and location-filtered listings, individual profiles, a photo gallery feed, and forum posts. With get_top_rated_photographers you can pull structured photographer records — name, pricing, location, and portfolio photos — paginated across the global catalog. Location filtering is available down to city level, and individual photo records include EXIF metadata and author attribution.
Photographer Discovery
The API offers four complementary ways to query the photographer directory. get_top_rated_photographers returns a paginated global feed of top-rated photographers, each record including id, name, surname, login, pricing, location, and an array of portfolio photos. For regional targeting, get_photographers_by_country accepts a country_slug (sourced from get_available_countries) and additionally returns a cities array of popular cities within that country. get_photographers_by_city narrows further using a city_path segment and country_slug pair — city paths come from get_cities_by_country, which returns path values in the format United-States:NY-New-York; only the segment after the colon is passed to get_photographers_by_city. search_photographers filters by photography category using category_id values 1–8, covering wedding, couple, maternity, newborn, child, family, and portrait specialties.
Photographer Profiles
get_photographer_profile fetches a single photographer's page by username and returns full_name, location, bio, phone, url, and a social_links array. Not all fields are guaranteed — bio, phone, and location may be absent depending on what the photographer has published. Social links include type and URL when present.
Photos and Forum
get_best_photos returns a paginated feed of photo objects from the site's gallery, each with id, url, and image_url. For individual photos, get_photo_detail accepts a numeric photo_id and returns EXIF data as a text string, author, author_login, and the full-resolution image_url. The EXIF field may be empty if the photographer did not publish shooting data. get_forum_posts retrieves forum and story post listings with id, title, and url per post — useful for monitoring community content without navigating the site directly.
- Build a photographer comparison tool filtered by country or city using
get_photographers_by_countryand pricing fields - Aggregate portfolios from top-rated photographers globally via
get_top_rated_photographersfor a curated gallery app - Index wedding photographer profiles including bio and social links for a B2B lead or directory product
- Pull EXIF metadata from photos via
get_photo_detailto analyze popular camera equipment and shooting settings among wedding photographers - Monitor new forum and story posts from
get_forum_poststo surface wedding photography community trends - Filter photographers by specialty category (e.g. maternity, newborn) using
search_photographerswithcategory_id - Populate a location-aware search UI by chaining
get_available_countries,get_cities_by_country, andget_photographers_by_city
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does MyWed.com have an official developer API?+
What does get_photographer_profile return, and are all fields always present?+
get_photographer_profile returns full_name, url, username, and optionally bio, phone, location, and social_links. The optional fields depend on what each photographer has added to their profile — they may be absent or empty in the response. You should handle missing fields defensively in your integration.How do city paths work when querying photographers by city?+
get_cities_by_country returns path values in the format CountrySlug:CityPath (e.g. United-States:NY-New-York). When calling get_photographers_by_city, pass only the segment after the colon as city_path, and the full country slug as country_slug. Passing the full path including the prefix to city_path will not return results.Does the API return photographer reviews or ratings?+
pricing, location, and portfolio photos, but individual review counts, star ratings, or review text are not exposed as distinct fields. You can fork this API on Parse and revise it to add an endpoint targeting per-photographer review data.Does the forum endpoint return the full post body or just listings?+
get_forum_posts returns post id, title, and url — it is a listing feed, not a content endpoint. Full post body and comments are not currently included. You can fork this API on Parse and revise it to add a post detail endpoint that fetches the full content for a given post ID.