Welcome to the Tarkov Time Capsule API! Use the /api/latestspawnchance endpoint to query boss spawn chances with optional parameters: - ?mapName=[mapName] : Filter by specific map name. - ?bossName=[bossName] : Filter by specific boss name. - ?groupBy=[boss|map|timestamp] : Group results by boss, map, or timestamp. Defaults to no grouping if not specified. Examples: - /api/latestspawnchance?mapName=Customs - /api/latestspawnchance?bossName=Reshala - /api/latestspawnchance?groupBy=boss Use the /api/spawnchance endpoint to query boss spawn chances with optional parameters: - ?mapName=[mapName] : Filter by specific map name. - ?bossName=[bossName] : Filter by specific boss name. - ?startDate=[YYYY-MM-DD] : Filter results from this start date. - ?endDate=[YYYY-MM-DD] : Filter results until this end date. - ?groupBy=[boss|map|timestamp] : Group results by boss, map, or timestamp. Defaults to no grouping if not specified. Use the /api/bosses endpoint to get the list of all bosses. Use the /api/maps endpoint to get the list of all maps. Examples: - /api/spawnchance?mapName=Customs - /api/spawnchance?bossName=Reshala - /api/spawnchance?mapName=Customs&startDate=2024-10-01&endDate=2024-10-07 - /api/spawnchance?groupBy=boss - /api/spawnchance?groupBy=map&startDate=2024-10-01 - /api/spawnchance?groupBy=timestamp - /api/bosses - /api/maps By default, the /api/spawnchance endpoint returns results from the last week if no date range is specified, and the response is ungrouped unless specified by the groupBy parameter.