{
  "openapi": "3.0.1",
  "info": {
    "title": "Skip Trace | $6.5/1K | People Search, Address & Phone",
    "description": "Skip tracing & people search across the US. Look up anyone by name, address or phone and get current + past addresses, phone numbers, relatives, aliases and a profile link. Real-time public records, no subscription or API key. Flat $6.5/1K, pay only for matches. Lawful B2B use only.",
    "version": "0.8",
    "x-build-id": "XJcO209gDKUk6krNR"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/apivault_labs~skip-trace-people-finder/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-apivault_labs-skip-trace-people-finder",
        "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/apivault_labs~skip-trace-people-finder/runs": {
      "post": {
        "operationId": "runs-sync-apivault_labs-skip-trace-people-finder",
        "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/apivault_labs~skip-trace-people-finder/run-sync": {
      "post": {
        "operationId": "run-sync-apivault_labs-skip-trace-people-finder",
        "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 names to look up. Optionally add a location after a semicolon to narrow results, e.g. \"Jane Doe; Springfield, IL 62704\".",
            "items": {
              "type": "string"
            }
          },
          "street_citystatezip": {
            "title": "Addresses",
            "type": "array",
            "description": "Street addresses with city, state, ZIP. Example: \"123 Main St; Springfield, IL 62704\". Finds people associated with the address.",
            "items": {
              "type": "string"
            }
          },
          "phone_number": {
            "title": "Phone numbers",
            "type": "array",
            "description": "US phone numbers for reverse lookup. Example: \"(202) 555-0182\".",
            "items": {
              "type": "string"
            }
          },
          "email": {
            "title": "Emails (reverse lookup)",
            "type": "array",
            "description": "Email addresses for reverse lookup — find the person behind an email. Example: \"jane.doe@gmail.com\".",
            "items": {
              "type": "string"
            }
          },
          "max_results": {
            "title": "Max results per query",
            "minimum": 1,
            "maximum": 50,
            "type": "integer",
            "description": "How many matched people to return per input value. Each source page holds ~15 people; values above 15 fetch additional pages. Default 10.",
            "default": 10
          },
          "source": {
            "title": "Data coverage",
            "enum": [
              "auto",
              "merge",
              "default"
            ],
            "type": "string",
            "description": "Comprehensive (recommended) searches the richest public-records sources and returns the most complete records (addresses, phones, emails, relatives, aliases). Maximum also cross-references multiple sources and merges them per person for the fullest possible record (slower). Standard uses the baseline source only.",
            "default": "auto"
          },
          "maxRetries": {
            "title": "Retries on transient failure",
            "minimum": 0,
            "maximum": 3,
            "type": "integer",
            "description": "Retry attempts when the source returns a transient anti-bot response.",
            "default": 2
          },
          "timeout": {
            "title": "Timeout per request (seconds)",
            "minimum": 10,
            "maximum": 45,
            "type": "integer",
            "description": "Max wait per page fetch.",
            "default": 25
          },
          "useResidential": {
            "title": "Use residential proxy fallback",
            "type": "boolean",
            "description": "Off by default. The primary sources work on free US datacenter IPs, so residential is not needed and you pay nothing extra. Turn this ON only if you want a residential fallback for the few sources/cases that block datacenter (adds a small residential-bandwidth cost).",
            "default": false
          },
          "verifyEmails": {
            "title": "Verify email deliverability (MX)",
            "type": "boolean",
            "description": "On by default. Checks each found email's domain for mail (MX/A) records and flags it as deliverable. Adds top-level bestEmail plus emailsVerified / emailsDetailed fields. Free and fast (DNS only), no extra cost.",
            "default": true
          },
          "flatOutput": {
            "title": "Flat output (for spreadsheets / CRM / n8n)",
            "type": "boolean",
            "description": "Off by default. Flattens nested fields (phones, emails, relatives, geo, emailsDetailed…) into single underscore/semicolon-joined columns for a clean CSV / Excel / Google Sheets export. Combine with the mostLikely flag to filter down to one best row per person.",
            "default": false
          },
          "maxConcurrency": {
            "title": "Max parallel lookups",
            "minimum": 1,
            "maximum": 8,
            "type": "integer",
            "description": "How many lookups (and profile pages) to fetch in parallel. Higher is faster but hits the source harder; 4 is a good balance.",
            "default": 4
          },
          "useUnblocker": {
            "title": "Premium sources (via your unblocker API)",
            "type": "boolean",
            "description": "Off by default. When ON, the Actor also queries premium sources behind Cloudflare/DataDome — FastPeopleSearch, USPhonebook, SearchPeopleFree, Veripages, Nuwber (reverse-phone, adds carrier) and Addresses.com — through YOUR unblocker API, adding many extra phone numbers, emails, relatives, carrier and geo-coordinates per person. Requires your own unblocker API key below; that service bills you directly (the Actor's price is unchanged). Leave OFF to use the free built-in sources only.",
            "default": false
          },
          "unblockerProvider": {
            "title": "Unblocker provider",
            "enum": [
              "scrapedo",
              "scraperapi",
              "zenrows",
              "scrapingbee",
              "custom"
            ],
            "type": "string",
            "description": "Which unblocker/anti-bot API to route premium sources through. Use 'custom' to supply your own URL template below.",
            "default": "scrapedo"
          },
          "unblockerApiKey": {
            "title": "Unblocker API key",
            "type": "string",
            "description": "Your API token/key for the chosen unblocker provider. Only used when 'Premium sources' is ON. Kept secret."
          },
          "unblockerUrlTemplate": {
            "title": "Custom unblocker URL template",
            "type": "string",
            "description": "Only for provider = custom. Use {url} for the (URL-encoded) target and {key} for your API key, e.g. https://api.example.com/?token={key}&url={url}&country=us"
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}