GoWork Details Extractor avatar

GoWork Details Extractor

Pricing

from $6.99 / 1,000 results

Go to Apify Store
GoWork Details Extractor

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

Kawsar

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

6 days ago

Last modified

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

FieldTypeDescription
companyUrlsArray of stringsList of GoWork company profile URLs to scrape
requestTimeoutSecsIntegerPer-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-france
https://gowork.fr/15-production-boulogne-billancourt
https://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

FieldTypeDescription
pageUrlStringThe GoWork profile URL that was scraped
companyNameStringCompany name
telephoneStringPhone number listed on the profile
logoUrlStringURL of the company logo image
websiteUrlStringCompany's own website
streetAddressStringFull street address
cityStringCity
regionStringAdministrative region (e.g. Île-de-France)
countryStringTwo-letter country code (e.g. FR)
industryStringIndustry or sector category
ratingValueNumberOverall star rating from 0 to 5
ratingCountIntegerTotal number of ratings
reviewCountIntegerTotal number of written reviews
ratingBreakdownObjectPercentage share for each star level (keys: "5", "4", "3", "2", "1")
reviewsArrayAll employee reviews (see below)
companyPageDescriptionStringMeta description from the GoWork page
scrapedAtStringISO 8601 UTC timestamp of when the page was scraped
errorString or nullError message if scraping failed, otherwise null

Review object fields

Each item in the reviews array contains:

FieldTypeDescription
authorStringReviewer's display name
datePublishedStringDate the review was published
reviewBodyStringFull text of the review
ratingValueNumberStar 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

  1. Open the actor on Apify and click Try for free
  2. Paste one or more GoWork company profile URLs into the Company URLs field
  3. Click Start and wait for the run to finish
  4. 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 logoUrl field returns GoWork's default placeholder image URL.