{
  "openapi": "3.0.1",
  "info": {
    "title": "Signalbase Real Time Funding",
    "description": "Real-time funding round signals. Get Series A, Seed, and all funding rounds with company details, amounts, investors, and sources.",
    "version": "1.0",
    "x-build-id": "pfaWK7J6HbCanhX5E"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/signalbase~signalbase-funding/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-signalbase-signalbase-funding",
        "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/signalbase~signalbase-funding/runs": {
      "post": {
        "operationId": "runs-sync-signalbase-signalbase-funding",
        "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/signalbase~signalbase-funding/run-sync": {
      "post": {
        "operationId": "run-sync-signalbase-signalbase-funding",
        "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": {
          "page": {
            "title": "Page",
            "minimum": 1,
            "type": "integer",
            "description": "Page number for pagination.",
            "default": 1
          },
          "limit": {
            "title": "Results Per Page",
            "minimum": 1,
            "maximum": 100,
            "type": "integer",
            "description": "Number of results per page (max 100).",
            "default": 50
          },
          "dateFrom": {
            "title": "Date From",
            "type": "string",
            "description": "Filter signals from this date (YYYY-MM-DD)."
          },
          "dateTo": {
            "title": "Date To",
            "type": "string",
            "description": "Filter signals up to this date (YYYY-MM-DD)."
          },
          "date_preset": {
            "title": "Date Preset",
            "enum": [
              "",
              "today",
              "yesterday",
              "last_7d",
              "last_14d",
              "last_30d",
              "last_60d",
              "last_90d",
              "last_6m",
              "last_1y",
              "last_2y",
              "this_week",
              "this_month",
              "this_quarter",
              "this_year",
              "last_week",
              "last_month",
              "last_quarter",
              "last_year"
            ],
            "type": "string",
            "description": "Relative date shorthand. Takes precedence over Date From / Date To."
          },
          "search": {
            "title": "Search",
            "type": "string",
            "description": "Free-text search across company name, industry, and more."
          },
          "countries": {
            "title": "Countries",
            "type": "string",
            "description": "Comma-separated country codes (e.g. US,GB,DE)."
          },
          "categories": {
            "title": "Categories",
            "type": "string",
            "description": "Pipe-separated company categories (e.g. Technology|Healthcare)."
          },
          "subcategories": {
            "title": "Subcategories",
            "type": "string",
            "description": "Comma-separated subcategory IDs: ai, saas, cybersecurity, web3, devtools, fintech, analytics, ecommerce, marketing, sales, healthcare, biotechnology, education, real estate, energy, logistics, manufacturing, retail, etc."
          },
          "industry": {
            "title": "Industry",
            "type": "string",
            "description": "Comma-separated exact industry names."
          },
          "company_name": {
            "title": "Company Name",
            "type": "string",
            "description": "Search by company name (partial match)."
          },
          "round": {
            "title": "Funding Round",
            "type": "string",
            "description": "Comma-separated round types: Pre-Seed, Seed, Series A, Series B, Series C, Series D, Series E, Series F, Series G, Growth, Debt, Grant, IPO, Undisclosed."
          },
          "round_flavor": {
            "title": "Round Flavor",
            "type": "string",
            "description": "Comma-separated: bridge, extension, secondary."
          },
          "currency": {
            "title": "Currency",
            "type": "string",
            "description": "Currency symbol filter (e.g. $, €, £)."
          },
          "verification_status": {
            "title": "Verification Status",
            "type": "string",
            "description": "Comma-separated: verified, unverified, pending."
          },
          "investor_name": {
            "title": "Investor Name",
            "type": "string",
            "description": "Search by investor name (partial match)."
          },
          "amount_min": {
            "title": "Min Funding Amount",
            "type": "integer",
            "description": "Minimum funding amount in USD cents."
          },
          "amount_max": {
            "title": "Max Funding Amount",
            "type": "integer",
            "description": "Maximum funding amount in USD cents."
          },
          "employee_count_min": {
            "title": "Min Employee Count",
            "type": "integer",
            "description": "Minimum company employee count."
          },
          "employee_count_max": {
            "title": "Max Employee Count",
            "type": "integer",
            "description": "Maximum company employee count."
          },
          "founded_year_min": {
            "title": "Min Founded Year",
            "type": "integer",
            "description": "Minimum company founded year."
          },
          "founded_year_max": {
            "title": "Max Founded Year",
            "type": "integer",
            "description": "Maximum company founded year."
          },
          "sort_by": {
            "title": "Sort By",
            "type": "string",
            "description": "Field to sort results by (e.g. date, amount)."
          },
          "sort_order": {
            "title": "Sort Order",
            "enum": [
              "asc",
              "desc"
            ],
            "type": "string",
            "description": "Sort direction.",
            "default": "desc"
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}