{
  "openapi": "3.0.1",
  "info": {
    "title": "Dental Office Leads - Practice Size, Specialty, Tech Stack",
    "description": "B2B prospect data for selling TO dental practices. Google Maps + website-enriched leads with deep filters: practice size (solo/small/medium/large/DSO), specialty, tech stack (Dentrix/Eaglesoft/Open Dental), equipment (CEREC/iTero/CBCT), insurance, sedation. For dental SaaS/supply/DSO M&A teams.",
    "version": "0.1",
    "x-build-id": "iw2UxjYX5FaZCY76C"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/seibs.co~dental-office-leads/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-seibs.co-dental-office-leads",
        "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/seibs.co~dental-office-leads/runs": {
      "post": {
        "operationId": "runs-sync-seibs.co-dental-office-leads",
        "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/seibs.co~dental-office-leads/run-sync": {
      "post": {
        "operationId": "run-sync-seibs.co-dental-office-leads",
        "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": [
          "search_terms",
          "locations",
          "enrichment_tier"
        ],
        "properties": {
          "search_terms": {
            "title": "Search terms",
            "type": "array",
            "description": "Google Maps search queries. Combined with each location. Examples: 'dentist', 'pediatric dentist', 'cosmetic dentist', 'orthodontist', 'oral surgeon', 'family dentist'.",
            "default": [
              "dentist"
            ],
            "items": {
              "type": "string"
            }
          },
          "locations": {
            "title": "Locations",
            "type": "array",
            "description": "US locations. Format: 'City, ST' or ZIP. Example: ['Austin, TX', 'Dallas, TX', '78701'].",
            "default": [
              "Austin, TX"
            ],
            "items": {
              "type": "string"
            }
          },
          "max_results_per_query": {
            "title": "Max results per query",
            "minimum": 1,
            "maximum": 500,
            "type": "integer",
            "description": "Cap on Google Maps records per (term x location) tuple. Hard ceiling 500.",
            "default": 50
          },
          "enrichment_tier": {
            "title": "Enrichment tier",
            "enum": [
              "base",
              "email",
              "premium"
            ],
            "type": "string",
            "description": "Which signals to extract. base = Maps profile only. email = + scraped email. premium = + tech stack + dental equipment + insurance + sedation + practice size inference (recommended).",
            "default": "premium"
          },
          "practice_size_filter": {
            "title": "Practice size filter",
            "uniqueItems": true,
            "type": "array",
            "description": "Only emit practices matching these size tiers. Inferred from provider count + locations count + DSO detection. Leave empty to allow all sizes.",
            "items": {
              "type": "string",
              "enum": [
                "solo",
                "small",
                "medium",
                "large",
                "dso",
                "unknown"
              ]
            },
            "default": []
          },
          "min_provider_count": {
            "title": "Min dentist count",
            "minimum": 0,
            "maximum": 500,
            "type": "integer",
            "description": "Minimum number of dentists/providers detected at the practice. Useful for targeting group practices. Requires premium tier."
          },
          "max_provider_count": {
            "title": "Max dentist count",
            "minimum": 0,
            "maximum": 500,
            "type": "integer",
            "description": "Maximum number of dentists at the practice. Useful for excluding mega-groups. Requires premium tier."
          },
          "required_specialties": {
            "title": "Required specialties (any-match)",
            "uniqueItems": true,
            "type": "array",
            "description": "Only emit practices matching at least ONE of these specialties. A practice can have multiple specialties (general+cosmetic, for example).",
            "items": {
              "type": "string",
              "enum": [
                "general_dentistry",
                "pediatric_dentistry",
                "orthodontic",
                "oral_surgery",
                "periodontic",
                "endodontic",
                "prosthodontic",
                "cosmetic_dentistry",
                "implant_dentistry",
                "tmj_specialist",
                "family_dentistry"
              ]
            },
            "default": []
          },
          "required_equipment": {
            "title": "Required equipment (all-match)",
            "uniqueItems": true,
            "type": "array",
            "description": "Only emit practices with ALL of these specialty equipment items detected on their website. Requires premium tier.",
            "items": {
              "type": "string",
              "enum": [
                "cerec",
                "itero_scanner",
                "cbct_3d_imaging",
                "laser_dentistry",
                "intraoral_camera",
                "3d_printer_dental",
                "clearaligner_brand",
                "endodontic_microscope",
                "panoramic_xray",
                "digital_xray"
              ]
            },
            "default": []
          },
          "required_insurance": {
            "title": "Required insurance carriers (any-match)",
            "uniqueItems": true,
            "type": "array",
            "description": "Only emit practices that accept at least ONE of these insurance carriers. Requires premium tier.",
            "items": {
              "type": "string",
              "enum": [
                "delta_dental",
                "cigna_dental",
                "aetna_dental",
                "metlife_dental",
                "guardian_dental",
                "united_healthcare_dental",
                "humana_dental",
                "anthem_dental",
                "bcbs_dental",
                "careington",
                "ameritas",
                "principal",
                "renaissance",
                "sun_life",
                "unum",
                "liberty_dental",
                "dentemax",
                "medicaid",
                "medicare",
                "tricare_dental"
              ]
            },
            "default": []
          },
          "requires_sedation": {
            "title": "Must offer sedation",
            "type": "boolean",
            "description": "Only emit practices that offer some form of sedation (nitrous, oral, IV, or general). Useful for sedation-dentistry SaaS targeting.",
            "default": false
          },
          "exclude_dsos": {
            "title": "Exclude DSOs / chains",
            "type": "boolean",
            "description": "Drop Dental Service Organizations and major chains (Heartland, Aspen, PDS, Smile Brands, Western, MB2, Sage, etc.). Recommended for SaaS sales targeting independents.",
            "default": true
          },
          "max_concurrent_enrichments": {
            "title": "Max concurrent website enrichments",
            "minimum": 1,
            "maximum": 32,
            "type": "integer",
            "description": "Parallel HTTP fetches against practice websites. 8 is safe.",
            "default": 8
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}