{
  "openapi": "3.0.1",
  "info": {
    "title": "Vinted Pro · Email & Phone by Market",
    "description": "Get new Vinted Pro emails on a market. You choose how many, and which fields must be public. Email, phone, company — one row per shop. Optional company file on France (INSEE) and the UK (Companies House). Need titles and prices? Use Vinted · Listings by Search. No login.",
    "version": "1.1",
    "x-build-id": "iZGyM3c5RBkRcegww"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/corent1robert~vinted-pro-siret-company/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-corent1robert-vinted-pro-siret-company",
        "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/corent1robert~vinted-pro-siret-company/runs": {
      "post": {
        "operationId": "runs-sync-corent1robert-vinted-pro-siret-company",
        "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/corent1robert~vinted-pro-siret-company/run-sync": {
      "post": {
        "operationId": "run-sync-corent1robert-vinted-pro-siret-company",
        "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": {
          "maxNewContacts": {
            "title": "New contacts this run",
            "minimum": 0,
            "type": "integer",
            "description": "Stop after this many rows that pass your Must-have fields. **0** = no cap. Free plan: 20 / run. You are billed only for rows that pass.",
            "default": 50
          },
          "requiredFields": {
            "title": "Must have",
            "type": "array",
            "description": "Keep the shop only if Vinted already shows these in the public Pro block. Masked ******@… is not a public email. Default: public email.",
            "items": {
              "type": "string",
              "enum": [
                "email",
                "phone",
                "company",
                "legalNumber"
              ],
              "enumTitles": [
                "Public email (not masked)",
                "Public phone (not masked)",
                "Company name",
                "Legal number"
              ]
            },
            "default": [
              "email"
            ]
          },
          "resetSeen": {
            "title": "Start over",
            "type": "boolean",
            "description": "API only. Ignore shops from previous runs. Leave off so reruns never duplicate.",
            "default": false
          },
          "market": {
            "title": "Vinted market",
            "enum": [
              "FR",
              "IT",
              "ES",
              "BE",
              "NL",
              "PT",
              "GB",
              "IE",
              "LU"
            ],
            "type": "string",
            "description": "Country site where Pro shops actually appear. Default France.",
            "default": "FR"
          },
          "enrichSiren": {
            "title": "Add INSEE company file (France)",
            "type": "boolean",
            "description": "France only. Looks up the Pro legal number on the public INSEE register (same source as French Companies · Search & SIREN Enrich): directors, VAT, NAF, HQ. Extra $0.005 per successful match. Ignored on other markets.",
            "default": false
          },
          "enrichUkCompany": {
            "title": "Add Companies House file (UK)",
            "type": "boolean",
            "description": "United Kingdom only. Looks up the Pro company number on the public Companies House register (same source as UK Companies House · Search, Directors & PSC): directors, SIC, status, registered office. Extra $0.004 per successful match. Ignored on other markets.",
            "default": false
          },
          "sellerIds": {
            "title": "Seller IDs",
            "type": "array",
            "description": "Optional. API only.",
            "items": {
              "type": "string"
            }
          },
          "searchText": {
            "title": "Search",
            "type": "string",
            "description": "Optional. API only."
          },
          "maxSellers": {
            "title": "Legacy cap",
            "minimum": 0,
            "type": "integer",
            "description": "Ignored when New contacts this run is set."
          },
          "concurrency": {
            "title": "Parallel requests",
            "minimum": 1,
            "maximum": 16,
            "type": "integer",
            "description": "How many Pro profiles to open at once.",
            "default": 8
          },
          "verboseLogs": {
            "title": "Verbose logs",
            "type": "boolean",
            "description": "Print extra debug lines in the run log.",
            "default": 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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}