GoWork Details Extractor
Pricing
from $6.99 / 1,000 results
GoWork Details Extractor
Scrapes company profiles from GoWork.fr and returns address, phone, industry, star ratings, and all employee reviews.
Pricing
from $6.99 / 1,000 results
Rating
0.0
(0)
Developer
Kawsar
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
6 days ago
Last modified
Categories
Share
Scrape company profiles from GoWork.fr and get back structured data on ratings, reviews, address, and contact info for any number of companies at once.
What it does
GoWork.fr is a French employer review site where employees rate and review the companies they work for. This actor scrapes company profile pages and returns everything on them in a clean, structured format: name, address, phone, website, industry, overall star rating, rating breakdown by star level, and all published employee reviews.
Give it a list of GoWork company profile URLs. It runs through each one and pushes the results to a dataset you can download as JSON, CSV, or Excel.
Who uses it
- HR teams researching employers before partnerships or hiring
- Researchers tracking employer reputation trends in France
- Recruiters benchmarking companies in a specific region or sector
- Developers building tools that aggregate French labor market data
- Anyone who needs GoWork data in a spreadsheet without copying it by hand
Input
| Field | Type | Description |
|---|---|---|
companyUrls | Array of strings | List of GoWork company profile URLs to scrape |
requestTimeoutSecs | Integer | Per-request timeout in seconds (default: 30) |
How to find a GoWork URL
Go to gowork.fr, search for a company by name, and open its profile page. The URL looks like:
https://gowork.fr/google-francehttps://gowork.fr/15-production-boulogne-billancourthttps://gowork.fr/air-france
Copy that URL and paste it into the companyUrls list. You can add as many as you want.
Example input
{"companyUrls": ["https://gowork.fr/15-production-boulogne-billancourt","https://gowork.fr/google-france"]}
Output
Each item in the dataset is one company profile. All results are written to the default dataset of your Apify run.
Output fields
| Field | Type | Description |
|---|---|---|
pageUrl | String | The GoWork profile URL that was scraped |
companyName | String | Company name |
telephone | String | Phone number listed on the profile |
logoUrl | String | URL of the company logo image |
websiteUrl | String | Company's own website |
streetAddress | String | Full street address |
city | String | City |
region | String | Administrative region (e.g. Île-de-France) |
country | String | Two-letter country code (e.g. FR) |
industry | String | Industry or sector category |
ratingValue | Number | Overall star rating from 0 to 5 |
ratingCount | Integer | Total number of ratings |
reviewCount | Integer | Total number of written reviews |
ratingBreakdown | Object | Percentage share for each star level (keys: "5", "4", "3", "2", "1") |
reviews | Array | All employee reviews (see below) |
companyPageDescription | String | Meta description from the GoWork page |
scrapedAt | String | ISO 8601 UTC timestamp of when the page was scraped |
error | String or null | Error message if scraping failed, otherwise null |
Review object fields
Each item in the reviews array contains:
| Field | Type | Description |
|---|---|---|
author | String | Reviewer's display name |
datePublished | String | Date the review was published |
reviewBody | String | Full text of the review |
ratingValue | Number | Star rating given by this reviewer |
Example output
{"pageUrl": "https://gowork.fr/15-production-boulogne-billancourt","companyName": "15 PRODUCTION","telephone": "+33 1 41 41 66 33","logoUrl": "https://gowork.fr/assets/images/company/nologo-150.png","websiteUrl": "https://15production.fr","streetAddress": "16 Rue des 4 Cheminées, 92100 Boulogne-Billancourt, France","city": "Boulogne-Billancourt","region": "Île-de-France","country": "FR","industry": "Arts, culture et divertissement","ratingValue": 5,"ratingCount": 3,"reviewCount": 3,"ratingBreakdown": {"5": 100.0,"4": 0.0,"3": 0.0,"2": 0.0,"1": 0.0},"reviews": [{"author": "Summarius","datePublished": "06-06-2025 13:01","reviewBody": "Avantages et inconvénients de travailler chez 15 PRODUCTION","ratingValue": 0}],"companyPageDescription": "Avis sur 15 PRODUCTION à Boulogne-Billancourt...","scrapedAt": "2025-05-19T10:00:00+00:00","error": null}
How to run
- Open the actor on Apify and click Try for free
- Paste one or more GoWork company profile URLs into the Company URLs field
- Click Start and wait for the run to finish
- Download results as JSON, CSV, or Excel from the Storage tab
Error handling
If a URL fails (page not found, timeout, or access issue), the actor logs the error, writes an output item with the error field set, and continues with the remaining URLs. One failed URL will not stop the run.
Notes
- Reviews are taken from the structured data embedded in each GoWork page. The number of reviews returned may differ from the total count shown on the page if GoWork only embeds a subset in the page source.
- GoWork pages are in French. Review text and industry names will be in French.
- If a company has no logo, the
logoUrlfield returns GoWork's default placeholder image URL.