{
  "openapi": "3.0.1",
  "info": {
    "title": "Skip Trace | Owner Phones & Emails — Pay Only for Hits",
    "description": "Skip tracing & people search: name, address or phone in → ranked phones (type, carrier, confidence), emails, address history, relatives & associates out. Corroborated across sources. Pay only for matched records. For wholesalers, collections, process servers & investigators. Lawful B2B use only.",
    "version": "1.0",
    "x-build-id": "ADQojPXaeflmw4cqq"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/thermostatic~skiptrace/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-thermostatic-skiptrace",
        "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/thermostatic~skiptrace/runs": {
      "post": {
        "operationId": "runs-sync-thermostatic-skiptrace",
        "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/thermostatic~skiptrace/run-sync": {
      "post": {
        "operationId": "run-sync-thermostatic-skiptrace",
        "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": {
          "name": {
            "title": "Names",
            "type": "array",
            "description": "Full name to search, one entry per search. Optionally append a location: 'Amalia Castillo; Dallas, TX 75228'. Default runs a real search so the daily platform auto-test produces a non-empty dataset.",
            "default": [
              "Alan Harper"
            ],
            "items": {
              "type": "string"
            }
          },
          "street_citystatezip": {
            "title": "Addresses",
            "type": "array",
            "description": "Address to search, street and city/state/zip separated by a semicolon: '13770 Paseo Central Ave; Horizon City TX 79928'. Append ' | Full Name' to pick a specific resident.",
            "items": {
              "type": "string"
            }
          },
          "phone_number": {
            "title": "Phone numbers",
            "type": "array",
            "description": "Phone number to search, e.g. '(208) 794-8562'. Append ' | Full Name' to pick a specific person.",
            "items": {
              "type": "string"
            }
          },
          "owner_name": {
            "title": "Owner names",
            "type": "array",
            "description": "Owner name, paired index-wise with property_address. Only the matching owner is expanded (person picker).",
            "items": {
              "type": "string"
            }
          },
          "email": {
            "title": "Emails",
            "type": "array",
            "description": "Reverse email search (thatsthem source). Returns people summaries tied to the address.",
            "items": {
              "type": "string"
            }
          },
          "sources": {
            "title": "Sources",
            "uniqueItems": true,
            "type": "array",
            "description": "Which data sources to query. Every search fans out to all selected sources in parallel, so one blocked source never zeroes a run. thatsthem adds reverse email search; radaris adds employment data. truepeoplesearch runs through a premium unlocker automatically when an unlocker key is configured (see below).",
            "items": {
              "type": "string",
              "enum": [
                "fastpeoplesearch",
                "fastbackgroundcheck",
                "thatsthem",
                "truepeoplesearch",
                "radaris",
                "searchpeoplefree",
                "familytreenow"
              ]
            },
            "default": [
              "fastpeoplesearch",
              "fastbackgroundcheck",
              "thatsthem",
              "truepeoplesearch",
              "radaris",
              "searchpeoplefree",
              "familytreenow"
            ]
          },
          "max_results": {
            "title": "Max results per search",
            "minimum": 1,
            "maximum": 50,
            "type": "integer",
            "description": "How many people from each search's result list to expand into full records (phones, emails, address history, relatives).",
            "default": 1
          },
          "max_concurrency": {
            "title": "Max concurrency",
            "minimum": 1,
            "maximum": 20,
            "type": "integer",
            "description": "Parallel requests. Lower this if the source starts serving Cloudflare challenges.",
            "default": 5
          },
          "max_requests_per_minute": {
            "title": "Max requests per minute",
            "minimum": 1,
            "type": "integer",
            "description": "Politeness cap protecting IP reputation during bulk runs. Lower it if a source starts blocking.",
            "default": 240
          },
          "min_confidence": {
            "title": "Min phone confidence",
            "minimum": 0,
            "maximum": 100,
            "type": "integer",
            "description": "Drop phones scoring below this 0-100 confidence before results are charged. 0 keeps everything.",
            "default": 0
          },
          "fingerprint_preset": {
            "title": "Fingerprint preset",
            "enum": [
              "chrome-latest",
              "firefox-latest",
              "safari-latest",
              "edge-latest",
              "chrome-146",
              "firefox-141",
              "safari-18.4"
            ],
            "type": "string",
            "description": "Browser fingerprint preset (e.g. chrome-latest, firefox-latest, safari-latest). Keep the default unless you have a reason.",
            "default": "chrome-latest"
          },
          "proxy": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "RESIDENTIAL + US by default (required for full data on all sources; residential transfer is billed to the run's account). Custom proxyUrls also supported. Runs without a proxy will be blocked by most sources.",
            "default": {
              "useApifyProxy": true,
              "apifyProxyGroups": [
                "RESIDENTIAL"
              ],
              "apifyProxyCountry": "US"
            }
          },
          "output_profile": {
            "title": "Output profile",
            "enum": [
              "raw",
              "dialer",
              "address_verification",
              "investigation",
              "estate"
            ],
            "type": "string",
            "description": "Shape dataset rows for your use case: dialer (wholesaling cold-calling), address_verification (process servers / collections), investigation (PI/OSINT, full provenance), estate (relatives graph), raw (full record).",
            "default": "raw"
          },
          "unlocker_api_key": {
            "title": "Premium unlocker API key",
            "type": "string",
            "description": "Optional. Lets the actor fetch the most-protected source (truepeoplesearch) through a premium browser-unlock service when its captcha gate rejects proxy IPs. Recommended: scrappey.com (~€1 per 1,000 requests, billed by the provider). For a properly masked secret, leave this empty and set the key as the actor's secret environment variable unlocker_api_key instead."
          },
          "corroborate": {
            "title": "Cross-source corroboration",
            "type": "boolean",
            "description": "Query the same person on multiple sources and merge into one record per person; phones are confidence-scored (0-100) by line type, report recency and how many sources list them, ranked best-first. Slower and costlier.",
            "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}