{
  "openapi": "3.0.1",
  "info": {
    "title": "French IT Contract Market - Day Rates & Hiring Companies",
    "description": "French IT contractor missions with structured day rates, plus what listings alone cannot give: median day rate per role and region, with p25, p75, sample size and the companies hiring. Deduplicated across Free-Work, Freelance-Informatique and Codeur. Incremental mode returns only new missions.",
    "version": "0.1",
    "x-build-id": "HeLGClGgTip90h0gG"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/koatiromeo~french-it-contract-market/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-koatiromeo-french-it-contract-market",
        "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/koatiromeo~french-it-contract-market/runs": {
      "post": {
        "operationId": "runs-sync-koatiromeo-french-it-contract-market",
        "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/koatiromeo~french-it-contract-market/run-sync": {
      "post": {
        "operationId": "run-sync-koatiromeo-french-it-contract-market",
        "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": {
          "sources": {
            "title": "Sources",
            "type": "array",
            "description": "Which French platforms to collect from. Free-Work carries the largest volume of IT contractor missions with structured day rates.",
            "items": {
              "type": "string",
              "enum": [
                "free-work",
                "freelance-informatique",
                "codeur"
              ],
              "enumTitles": [
                "Free-Work - IT contractor missions, structured day rates",
                "Freelance-Informatique - agency and enterprise missions",
                "Codeur.com - SME project briefs (fixed budgets)"
              ]
            },
            "default": [
              "free-work",
              "freelance-informatique"
            ]
          },
          "maxMissions": {
            "title": "Max missions",
            "minimum": 1,
            "maximum": 10000,
            "type": "integer",
            "description": "Total number of missions returned, across all sources. Missions are ordered most-recent-first, so the cap always keeps the freshest ones. Free-Work alone publishes around 6,600 contractor missions - raise this for a full market snapshot.",
            "default": 500
          },
          "query": {
            "title": "Keyword",
            "type": "string",
            "description": "Free-text filter, for example 'kubernetes' or 'sap fi'. Every word must appear in the title, description or skills. Leave empty for the whole market.",
            "default": ""
          },
          "sinceDays": {
            "title": "Published within the last N days",
            "minimum": 1,
            "maximum": 365,
            "type": "integer",
            "description": "Drop anything older. Leave empty to keep every published mission."
          },
          "contractorOnly": {
            "title": "Contractor missions only",
            "type": "boolean",
            "description": "Filters out permanent roles server-side where the source supports it. Turn off to include permanent positions.",
            "default": true
          },
          "onlyNewSinceLastRun": {
            "title": "Only missions not seen in previous runs",
            "type": "boolean",
            "description": "Remembers every mission already returned and emits only what is genuinely new. Built for scheduled polling: you pay for new missions, not for the same ones every day.",
            "default": false
          },
          "computeRateBenchmark": {
            "title": "Compute day-rate benchmark",
            "type": "boolean",
            "description": "Produces median, p25, p75, min, max and sample size per role and region, written to the 'rate-benchmarks' dataset and to the RATE_BENCHMARK record. Always computed on the full collection, never on the incremental subset.",
            "default": true
          },
          "benchmarkMinSample": {
            "title": "Minimum sample per benchmark",
            "minimum": 3,
            "maximum": 100,
            "type": "integer",
            "description": "No benchmark is emitted below this many missions. A median over 2 missions is an anecdote, not a market rate.",
            "default": 5
          },
          "includeRaw": {
            "title": "Include raw source payload",
            "type": "boolean",
            "description": "Adds the untouched source record to each row. Useful for debugging, heavy in storage.",
            "default": false
          },
          "requestDelaySeconds": {
            "title": "Delay between requests to the same host",
            "minimum": 0,
            "maximum": 10,
            "type": "number",
            "description": "Raise this if a source starts returning empty results - Free-Work throttles by IP silently, answering 200 with zero rows.",
            "default": 0.4
          },
          "proxyConfiguration": {
            "title": "Proxy",
            "type": "object",
            "description": "These sources work from datacenter IPs without a proxy. Enable one only if a source starts refusing or returning nothing.",
            "default": {
              "useApifyProxy": false
            }
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}