{
  "openapi": "3.0.1",
  "info": {
    "title": "Digital Footprint OSINT: Email to Accounts, Profiles, Domains",
    "description": "Build a public-source digital footprint report from an email, username, domain, or authorized phone number. It launches separate Apify Actors for account, profile, WHOIS, look-alike domain, and phone checks; child runs bill separately. Matches are leads, not identity proof.",
    "version": "9.15",
    "x-build-id": "OCUT94G7wyFoQ67rO"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/ntriqpro~osint-recon-suite/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-ntriqpro-osint-recon-suite",
        "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/ntriqpro~osint-recon-suite/runs": {
      "post": {
        "operationId": "runs-sync-ntriqpro-osint-recon-suite",
        "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/ntriqpro~osint-recon-suite/run-sync": {
      "post": {
        "operationId": "run-sync-ntriqpro-osint-recon-suite",
        "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",
        "required": [
          "disclaimerAck"
        ],
        "properties": {
          "emails": {
            "title": "Email addresses",
            "maxItems": 25,
            "type": "array",
            "description": "Email addresses you are authorized to investigate. Each address is checked for account-registration signals across 120+ services, turned into username candidates for searches across up to 3,000 sites, and, for company addresses, used to check domain registration facts and look-alikes. Display-name forms such as 'Name <name@example.com>' and 'mailto:' links are accepted. Free-plan runs deliver up to 25 result rows across the submitted inputs, then finish normally with a notice. Paid plans receive the full result set, subject to the input and run limits.",
            "items": {
              "type": "string"
            }
          },
          "usernames": {
            "title": "Usernames (optional)",
            "maxItems": 25,
            "type": "array",
            "description": "Extra usernames to search alongside the ones derived from the email addresses.",
            "items": {
              "type": "string"
            }
          },
          "domains": {
            "title": "Domains (optional)",
            "maxItems": 10,
            "type": "array",
            "description": "Extra domains to profile. A domain named here is also checked for subdomains and published addresses, which is skipped for domains merely inferred from an email address.",
            "items": {
              "type": "string"
            }
          },
          "phones": {
            "title": "Phone numbers (optional)",
            "maxItems": 5,
            "type": "array",
            "description": "Phone numbers in E.164 format (+14155552671). Only used when 'Enable phone lookups' is switched on.",
            "items": {
              "type": "string"
            }
          },
          "deriveUsernames": {
            "title": "Derive usernames from email addresses",
            "type": "boolean",
            "description": "Turn the part before the @ into username candidates (a plain form, a form without dots and underscores, and a form without trailing digits) and search them across 3000+ sites. Role mailboxes such as info@ or support@ are never turned into usernames."
          },
          "maxUsernamesPerEmail": {
            "title": "Username candidates per address",
            "minimum": 1,
            "maximum": 3,
            "type": "integer",
            "description": "How many derived candidates each address may contribute. More candidates find more profiles and take longer."
          },
          "maxSitesPerUsername": {
            "title": "Sites checked per username",
            "minimum": 50,
            "maximum": 3000,
            "type": "integer",
            "description": "How many sites each username is searched across, most popular first. Raise it for a deeper search and a longer run."
          },
          "maxEmails": {
            "title": "Max addresses per run",
            "minimum": 1,
            "maximum": 25,
            "type": "integer",
            "description": "How many supplied email addresses this run processes, from 1 to 25. Runtime grows with each address, so keep the run timeout in mind for large batches. Free-plan runs deliver up to 25 result rows across the submitted inputs, then finish normally with a notice. Paid plans receive the full result set, subject to the input and run limits."
          },
          "includeDomainInsights": {
            "title": "Include domain findings",
            "type": "boolean",
            "description": "Check the registration facts and registered look-alike domains for company domains. Free mail providers (gmail.com, outlook.com and the like) are skipped because the domain belongs to the provider, not to the person."
          },
          "includePhone": {
            "title": "Enable phone lookups",
            "type": "boolean",
            "description": "Phone data is sensitive, so phone numbers are only looked up when this is switched on."
          },
          "disclaimerAck": {
            "title": "I confirm authorized use only",
            "type": "boolean",
            "description": "You confirm you are authorized to investigate these targets and will comply with all applicable laws (GDPR, PIPA, CFAA, local privacy law). This tool queries only publicly available sources."
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}