{
  "openapi": "3.0.1",
  "info": {
    "title": "WhatsApp Number Validator - Bulk Phone Check & Cleaner",
    "description": "Bulk WhatsApp number validator & phone checker — 100% offline. Per number: valid/invalid, E.164, country, region, carrier, line type and a WhatsApp-ready flag. Clean contact lists and pre-filter leads. No login, no QR, no ban risk. JSON, CSV or Excel out.",
    "version": "0.0",
    "x-build-id": "7CtavU8WD5NEqOOKx"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/memo23~whatsapp-number-validator/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-memo23-whatsapp-number-validator",
        "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/memo23~whatsapp-number-validator/runs": {
      "post": {
        "operationId": "runs-sync-memo23-whatsapp-number-validator",
        "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/memo23~whatsapp-number-validator/run-sync": {
      "post": {
        "operationId": "run-sync-memo23-whatsapp-number-validator",
        "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": {
          "phoneNumbers": {
            "title": "Phone numbers",
            "type": "array",
            "description": "Phone numbers to validate, one per entry. International format (+15551234567) is best. Local numbers (e.g. 07911123456) work if you also set a Default country below.",
            "items": {
              "type": "string"
            }
          },
          "phoneNumbersText": {
            "title": "Phone numbers (paste a list)",
            "type": "string",
            "description": "Alternative to the list above — paste numbers separated by new lines, commas, or semicolons. Merged with the list. Handy for pasting a spreadsheet column."
          },
          "defaultCountry": {
            "title": "Default country",
            "type": "string",
            "description": "ISO 2-letter country code (e.g. US, GB, IN) applied to numbers that have NO leading +country code. Leave empty if all your numbers are in international format."
          },
          "includeGeoCarrier": {
            "title": "Include region & carrier",
            "type": "boolean",
            "description": "Attach the geographic region (e.g. California, London) and mobile carrier (e.g. Airtel) when derivable offline. Adds no network calls.",
            "default": true
          },
          "onlyValid": {
            "title": "Only output valid numbers",
            "type": "boolean",
            "description": "Drop invalid / malformed numbers from the output — return only well-formed, assigned numbers.",
            "default": false
          },
          "onlyWhatsAppReady": {
            "title": "Only output WhatsApp-ready numbers",
            "type": "boolean",
            "description": "Return only numbers that are valid AND on a WhatsApp-capable line type (mobile). Use this to pre-filter a list before any live WhatsApp outreach.",
            "default": false
          },
          "liveCheck": {
            "title": "Enable live registration check",
            "type": "boolean",
            "description": "Confirm each valid, WhatsApp-capable number against your provider's endpoint. Requires the provider URL below.",
            "default": false
          },
          "liveCheckUrl": {
            "title": "Provider endpoint URL",
            "type": "string",
            "description": "Your WhatsApp-check provider's endpoint. Put `{e164}` or `{number}` in the URL to send a GET (e.g. `https://api.yourprovider.com/check?phone={e164}`), or leave it plain and we POST `{ phone, e164, number }` as JSON. We read a registered true/false from the response."
          },
          "liveCheckAuthHeader": {
            "title": "Provider auth header (optional)",
            "type": "string",
            "description": "An auth header for your provider, as `Header-Name: value` (e.g. `Authorization: Bearer sk_live_…` or `X-API-Key: …`). Kept secret."
          },
          "liveCheckRegisteredField": {
            "title": "Registered field (optional)",
            "type": "string",
            "description": "Dot-path to the true/false in your provider's JSON response (e.g. `data.registered`). Leave empty — we also auto-detect common keys like registered / exists / onWhatsApp / status."
          },
          "onlyWhatsAppRegistered": {
            "title": "Only output WhatsApp-registered numbers",
            "type": "boolean",
            "description": "Return only numbers the live check confirmed as registered on WhatsApp. Requires the live check above to be on.",
            "default": false
          },
          "whatsappConcurrency": {
            "title": "Live check concurrency",
            "minimum": 1,
            "maximum": 20,
            "type": "integer",
            "description": "How many live checks to run in parallel. Higher = faster for big lists (mind your provider's rate limit). Only used when the live check is on.",
            "default": 5
          },
          "whatsappTimeout": {
            "title": "Live check timeout (seconds)",
            "minimum": 1,
            "type": "integer",
            "description": "Per-request timeout for each live check. Only used when the live check is on.",
            "default": 15
          },
          "maxItems": {
            "title": "Max numbers",
            "minimum": 1,
            "type": "integer",
            "description": "Hard cap on how many numbers to process this run. Default 100000.",
            "default": 100000
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}