# GoWork Details Extractor (`kawsar/gowork-details-extractor`) Actor

Scrapes company profiles from GoWork.fr and returns address, phone, industry, star ratings, and all employee reviews.

- **URL**: https://apify.com/kawsar/gowork-details-extractor.md
- **Developed by:** [Kawsar](https://apify.com/kawsar) (community)
- **Categories:** Developer tools, Automation, Lead generation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $6.99 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## GoWork Details Extractor

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](https://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

```json
{
  "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

```json
{
  "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.

# Actor input Schema

## `companyUrls` (type: `array`):

List of GoWork company profile URLs to scrape in one run.

## `requestTimeoutSecs` (type: `integer`):

Per-request timeout in seconds.

## Actor input object example

```json
{
  "companyUrls": [
    "https://gowork.fr/15-production-boulogne-billancourt",
    "https://gowork.fr/google-france"
  ],
  "requestTimeoutSecs": 30
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "companyUrls": [
        "https://gowork.fr/15-production-boulogne-billancourt"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("kawsar/gowork-details-extractor").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "companyUrls": ["https://gowork.fr/15-production-boulogne-billancourt"] }

# Run the Actor and wait for it to finish
run = client.actor("kawsar/gowork-details-extractor").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "companyUrls": [
    "https://gowork.fr/15-production-boulogne-billancourt"
  ]
}' |
apify call kawsar/gowork-details-extractor --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=kawsar/gowork-details-extractor",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "GoWork Details Extractor",
        "description": "Scrapes company profiles from GoWork.fr and returns address, phone, industry, star ratings, and all employee reviews.",
        "version": "0.0",
        "x-build-id": "f1kYjtVn1j1RjnXfy"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/kawsar~gowork-details-extractor/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-kawsar-gowork-details-extractor",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/kawsar~gowork-details-extractor/runs": {
            "post": {
                "operationId": "runs-sync-kawsar-gowork-details-extractor",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/kawsar~gowork-details-extractor/run-sync": {
            "post": {
                "operationId": "run-sync-kawsar-gowork-details-extractor",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "companyUrls": {
                        "title": "Company URLs (batch)",
                        "type": "array",
                        "description": "List of GoWork company profile URLs to scrape in one run.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "requestTimeoutSecs": {
                        "title": "Request timeout (seconds)",
                        "minimum": 5,
                        "maximum": 120,
                        "type": "integer",
                        "description": "Per-request timeout in seconds.",
                        "default": 30
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
