{
  "openapi": "3.0.1",
  "info": {
    "title": "Crypto Launch Tracker - ICO & Token Launch Intel with Alerts",
    "description": "Track upcoming ICO, IDO, and token launches across launchpads. Get launch dates, prices, social links, and fundraising intel with alerts.",
    "version": "3.7",
    "x-build-id": "w5FBlnxmodZsrA8NB"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/george.the.developer~crypto-launch-tracker/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-george.the.developer-crypto-launch-tracker",
        "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/george.the.developer~crypto-launch-tracker/runs": {
      "post": {
        "operationId": "runs-sync-george.the.developer-crypto-launch-tracker",
        "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/george.the.developer~crypto-launch-tracker/run-sync": {
      "post": {
        "operationId": "run-sync-george.the.developer-crypto-launch-tracker",
        "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": [
          "mode"
        ],
        "properties": {
          "mode": {
            "title": "Tracking Mode",
            "enum": [
              "discover",
              "enrich",
              "monitor"
            ],
            "type": "string",
            "description": "Choose your intelligence mode:\n• discover: Find ALL token launches (upcoming/active/ended) - great for initial research\n• enrich: Deep-dive specific projects you're watching\n• monitor: ALERT MODE - only returns NEW projects since last run (perfect for daily automation)",
            "default": "discover"
          },
          "category": {
            "title": "Launch Stage",
            "enum": [
              "upcoming",
              "active",
              "ended",
              "all"
            ],
            "type": "string",
            "description": "Filter by token launch stage. 'Upcoming' = early alpha opportunities. 'Active' = live sales. 'Ended' = historical ROI data.",
            "default": "upcoming"
          },
          "startUrls": {
            "title": "Watchlist URLs (Enrich Mode)",
            "type": "array",
            "description": "Track specific projects you're watching. Paste ICO Drops URLs for deep-dive intel on your watchlist.",
            "items": {
              "type": "object",
              "required": [
                "url"
              ],
              "properties": {
                "url": {
                  "type": "string",
                  "title": "URL of a web page",
                  "format": "uri"
                }
              }
            }
          },
          "maxItems": {
            "title": "Results Limit",
            "minimum": 0,
            "maximum": 1000,
            "type": "integer",
            "description": "How many projects to fetch. Tip: Start with 5-10 for testing, then scale up or use unlimited (0) for production.",
            "default": 10
          },
          "maxConcurrency": {
            "title": "Max Concurrency",
            "minimum": 1,
            "maximum": 3,
            "type": "integer",
            "description": "How many pages to process in parallel. Lower values reduce memory and cost. Recommended default: 1 for cheapest runs, 2-3 for faster runs.",
            "default": 1
          },
          "outputFormat": {
            "title": "Data Format",
            "enum": [
              "research",
              "outreach",
              "crm"
            ],
            "type": "string",
            "description": "Choose based on your use case:\n• full: Complete intelligence (funding, VCs, socials, dates)\n• signals: Lean format for trading bots & alerts\n• pipeline: Flat structure for CRM/database import",
            "default": "research"
          },
          "includeFields": {
            "title": "Include Only These Fields",
            "type": "array",
            "description": "Only include specific fields in output (leave empty for all). Available: projectName, description, category, stage, socialLinks, website, twitter, telegram, discord, medium, github, whitepaper, tokenInfo, dates, url",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "excludeFields": {
            "title": "Exclude These Fields",
            "type": "array",
            "description": "Remove specific fields from output. Useful to slim down payloads.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "enableDeltaTracking": {
            "title": "🚨 Alert Mode - Only NEW Launches",
            "type": "boolean",
            "description": "THE KEY FEATURE: Only returns projects added SINCE your last run. Run daily → get only fresh launches. Zero duplicates. Perfect for: Telegram alerts, newsletter automation, trading bot feeds. First run = baseline, subsequent runs = new projects only.",
            "default": false
          },
          "deltaKeyPrefix": {
            "title": "Delta Storage Key",
            "type": "string",
            "description": "Custom key prefix for delta tracking storage. Use different keys for different monitoring workflows.",
            "default": "ico-drops-delta"
          },
          "normalizeSocials": {
            "title": "Normalize Social Links",
            "type": "boolean",
            "description": "Clean up social URLs: remove tracking params, standardize handles, fix common URL issues.",
            "default": true
          },
          "addBestContact": {
            "title": "Add Best Contact Link",
            "type": "boolean",
            "description": "Automatically pick the best contact method (prioritizes: Telegram > Discord > Twitter > Website).",
            "default": true
          },
          "proxyConfiguration": {
            "title": "Proxy Configuration",
            "type": "object",
            "description": "Proxy settings for avoiding blocks. Default uses standard Apify Proxy for maximum compatibility; switch to RESIDENTIAL if your plan supports it."
          },
          "debug": {
            "title": "Debug Mode",
            "type": "boolean",
            "description": "Enable verbose logging for troubleshooting.",
            "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}