{
  "openapi": "3.0.1",
  "info": {
    "title": "GitHub Paid Issues & Bounty Finder",
    "description": "Find open GitHub issues offering bounties, cash rewards, or paid developer work. Filter noisy results by reward, language, repository stars, freshness, and confidence.",
    "version": "1.0",
    "x-build-id": "Zgdff7UhB5Qp03Ib5"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/coolinbex~github-paid-issues-bounty-finder/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-coolinbex-github-paid-issues-bounty-finder",
        "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/coolinbex~github-paid-issues-bounty-finder/runs": {
      "post": {
        "operationId": "runs-sync-coolinbex-github-paid-issues-bounty-finder",
        "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/coolinbex~github-paid-issues-bounty-finder/run-sync": {
      "post": {
        "operationId": "run-sync-coolinbex-github-paid-issues-bounty-finder",
        "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": {
          "searchTerms": {
            "title": "Bounty search terms",
            "minItems": 1,
            "maxItems": 10,
            "uniqueItems": true,
            "type": "array",
            "description": "Terms used to discover candidate issues. Each term is searched as literal text, then results are verified by the Actor.",
            "items": {
              "type": "string",
              "maxLength": 80
            },
            "default": [
              "bounty",
              "cash reward",
              "paid task",
              "paid issue",
              "reward"
            ]
          },
          "repositories": {
            "title": "Only these repositories",
            "maxItems": 10,
            "uniqueItems": true,
            "type": "array",
            "description": "Optional owner/repo list. Leave empty to search public GitHub globally.",
            "items": {
              "type": "string",
              "pattern": "^[A-Za-z0-9_.-]+/[A-Za-z0-9_.-]+$"
            },
            "default": []
          },
          "organizations": {
            "title": "Only these organizations",
            "maxItems": 10,
            "uniqueItems": true,
            "type": "array",
            "description": "Optional GitHub organization names. Leave empty for no organization restriction.",
            "items": {
              "type": "string",
              "pattern": "^[A-Za-z0-9_.-]+$"
            },
            "default": []
          },
          "languages": {
            "title": "Repository languages",
            "maxItems": 20,
            "uniqueItems": true,
            "type": "array",
            "description": "Optional primary-language filter, for example JavaScript, TypeScript, Python, Go, Rust. Repository metadata lookup is enabled when this is used.",
            "items": {
              "type": "string"
            },
            "default": []
          },
          "minimumRewardAmount": {
            "title": "Minimum reward amount",
            "minimum": 0,
            "maximum": 100000000,
            "type": "integer",
            "description": "Minimum numeric reward. For meaningful comparisons across results, also choose a reward currency.",
            "default": 0
          },
          "rewardCurrency": {
            "title": "Reward currency",
            "enum": [
              "ANY",
              "USD",
              "EUR",
              "GBP",
              "CAD",
              "AUD",
              "INR",
              "JPY",
              "USDT",
              "USDC",
              "DAI",
              "ETH",
              "BTC"
            ],
            "type": "string",
            "description": "Only return issues whose detected primary reward uses this currency. ANY accepts all supported currencies.",
            "default": "ANY"
          },
          "includeWithoutExplicitAmount": {
            "title": "Include bounties without a stated amount",
            "type": "boolean",
            "description": "Keep strong bounty/paid-work matches even when no amount can be parsed.",
            "default": true
          },
          "minimumConfidence": {
            "title": "Minimum detection confidence",
            "enum": [
              "medium",
              "high"
            ],
            "type": "string",
            "description": "Confidence describes how strongly the issue text looks like a paid task. It does not guarantee payment.",
            "default": "medium"
          },
          "minimumStars": {
            "title": "Minimum repository stars",
            "minimum": 0,
            "maximum": 10000000,
            "type": "integer",
            "description": "Optional repository popularity filter. Set 0 to disable.",
            "default": 0
          },
          "updatedWithinDays": {
            "title": "Updated within days",
            "minimum": 0,
            "maximum": 3650,
            "type": "integer",
            "description": "Only keep issues updated within this many days. Set 0 for any age.",
            "default": 0
          },
          "excludeAggregators": {
            "title": "Exclude aggregator/feed issues",
            "type": "boolean",
            "description": "Remove issues that mainly list or mirror many other bounties instead of offering one concrete task.",
            "default": true
          },
          "excludeArchivedRepositories": {
            "title": "Exclude archived repositories",
            "type": "boolean",
            "description": "Remove results from archived repositories after repository metadata is checked.",
            "default": true
          },
          "sortBy": {
            "title": "Sort results by",
            "enum": [
              "actionability",
              "reward",
              "updated",
              "created",
              "comments"
            ],
            "type": "string",
            "description": "How accepted results are ordered before writing them to the dataset.",
            "default": "actionability"
          },
          "maxResults": {
            "title": "Maximum results",
            "minimum": 1,
            "maximum": 200,
            "type": "integer",
            "description": "Maximum qualified issues written to the default dataset. A GitHub token is recommended above 40 results.",
            "default": 25
          },
          "includeBodyPreview": {
            "title": "Include issue preview",
            "type": "boolean",
            "description": "Include a short plain-text preview of the issue body in each result.",
            "default": true
          },
          "githubToken": {
            "title": "GitHub token (optional)",
            "type": "string",
            "description": "Optional GitHub personal access token for higher API limits. Public read access is sufficient. The value is stored encrypted by Apify."
          },
          "debug": {
            "title": "Debug logging",
            "type": "boolean",
            "description": "Log extra diagnostics. The GitHub token is never logged.",
            "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
                  },
                  "PROXY_UNBLOCKER_UNITS": {
                    "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
                  },
                  "PROXY_UNBLOCKER_UNITS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}