Move all the APIs under the same router
This commit is contained in:
parent
3d46cb5ec9
commit
c54ceeb7a8
27 changed files with 1289 additions and 351 deletions
|
|
@ -7,40 +7,46 @@
|
|||
<h1>Dataset Backups</h1>
|
||||
<section>
|
||||
<h2>About this dataset</h2>
|
||||
<p>This site tracks and publishes open Twitch and Kick drop campaign data.</p>
|
||||
<p>This site tracks and publishes open drop campaign data from Twitch and Kick.</p>
|
||||
<p>
|
||||
Campaign metadata in the downloadable datasets and public JSON API is released under
|
||||
<strong>CC0</strong> so you can reuse it freely. The underlying source data is scraped from Twitch/Kick
|
||||
APIs and pages, so we do not control the upstream content and cannot guarantee upstream accuracy or
|
||||
<strong>CC0</strong> so you can reuse it freely. The underlying source data is scraped from Twitch and Kick
|
||||
APIs and pages; we do not control the upstream content and cannot guarantee its accuracy or
|
||||
permanence. Linked third-party images, logos, and trademarks may remain subject to separate rights.
|
||||
</p>
|
||||
<p>Note that some drops has missing or incomplete data due to Twitch API limitations.</p>
|
||||
<p>Note that some drops have missing or incomplete data due to Twitch API limitations.</p>
|
||||
<p>
|
||||
Reward campaign data is sourced from
|
||||
<a href="https://github.com/SunkwiBOT/twitch-drops-api">SunkwiBOT/twitch-drops-api</a>.
|
||||
Raw JSON exports are available in the repository:
|
||||
Raw JSON exports are available in the same repository as
|
||||
<a href="https://github.com/SunkwiBOT/twitch-drops-api/blob/main/drops.json">drops.json</a>
|
||||
and
|
||||
<a href="https://github.com/SunkwiBOT/twitch-drops-api/blob/main/rewards.json">rewards.json</a>.
|
||||
</p>
|
||||
<p>
|
||||
Need a special format for your workflow or research pipeline?
|
||||
<a href="https://github.com/TheLovinator1/ttvdrops/issues">Contact me via GitHub issues</a>
|
||||
Kick data is fetched directly from the public
|
||||
<a href="https://web.kick.com/api/v1/drops/campaigns">Kick campaigns API</a>
|
||||
on a recurring schedule.
|
||||
</p>
|
||||
<p>
|
||||
Need a custom format for your workflow or research pipeline?
|
||||
<a href="https://github.com/TheLovinator1/ttvdrops/issues">Open a GitHub issue</a>
|
||||
and describe what you need.
|
||||
</p>
|
||||
</section>
|
||||
<section>
|
||||
<h2>Kick JSON API</h2>
|
||||
<p>
|
||||
Fully imported Kick campaigns are also available through the public, paginated
|
||||
<a href="{% url 'kick:campaign_api_list' %}">Kick campaign JSON API</a>.
|
||||
Responses include campaign dates, game and organization metadata, rewards, and the complete
|
||||
Fully imported Kick campaigns are also available through the public paginated
|
||||
<a href="{% url 'api-v1:kick-api-v1_list_campaigns' %}">Kick campaign JSON API</a>.
|
||||
Responses include campaign dates, game and organization metadata, rewards, and the full
|
||||
channel list stored for each campaign.
|
||||
</p>
|
||||
<p>
|
||||
Use <code>page</code> and <code>page_size</code> for pagination. Filter by Kick category ID with
|
||||
<code>game</code>, or by the computed campaign state with
|
||||
<code>status=active</code>, <code>status=upcoming</code>, or <code>status=expired</code>.
|
||||
<code>status=active</code>, <code>status=upcoming</code>, <code>status=expired</code>,
|
||||
or <code>status=unknown</code>.
|
||||
Page numbers and page sizes have a minimum of 1, and the maximum page size is 500.
|
||||
</p>
|
||||
<pre><code>{
|
||||
|
|
@ -60,15 +66,60 @@
|
|||
}]
|
||||
}</code></pre>
|
||||
<p>
|
||||
Timestamps use ISO 8601 in UTC and may be <code>null</code> when the source lacks a date. Campaigns with
|
||||
incomplete dates have the computed status <code>unknown</code> and are not returned by a status filter.
|
||||
Timestamps use ISO 8601 in UTC and may be <code>null</code> when the source does not provide a date. Campaigns with
|
||||
incomplete dates receive the computed status <code>unknown</code> and are excluded from status-based filtering.
|
||||
Each item includes every stored channel and raw reward without RSS truncation or reward-name merging.
|
||||
Consumers can stop pagination when <code>items</code> is empty or when
|
||||
<code>page * page_size >= total</code>.
|
||||
</p>
|
||||
<p>
|
||||
An empty <code>channels</code> list means that no channel restriction data is stored. It does not,
|
||||
by itself, guarantee that a campaign is available on every channel.
|
||||
An empty <code>channels</code> list means no channel restriction data is stored. It does not
|
||||
by itself guarantee that a campaign is available on every channel.
|
||||
</p>
|
||||
</section>
|
||||
<section>
|
||||
<h2>Twitch JSON API</h2>
|
||||
<p>
|
||||
Fully imported Twitch campaigns are available through the public paginated
|
||||
<a href="{% url 'api-v1:twitch-api-v1_list_campaigns' %}">Twitch campaign JSON API</a>.
|
||||
Responses include campaign dates, game and organization metadata, allowed channels, drops,
|
||||
and rewards for each campaign.
|
||||
</p>
|
||||
<p>
|
||||
Use <code>page</code> and <code>page_size</code> for pagination. Filter by Twitch game ID with
|
||||
<code>game</code>, or by the computed campaign state with
|
||||
<code>status=active</code>, <code>status=upcoming</code>, <code>status=expired</code>,
|
||||
or <code>status=unknown</code>.
|
||||
Page numbers and page sizes have a minimum of 1, and the maximum page size is 500.
|
||||
</p>
|
||||
<pre><code>{
|
||||
"total": 1,
|
||||
"page": 1,
|
||||
"page_size": 100,
|
||||
"items": [{
|
||||
"twitch_id": "...",
|
||||
"name": "...",
|
||||
"game": { "twitch_id": "...", "display_name": "..." },
|
||||
"organization": { "twitch_id": "...", "name": "...", "display_name": "..." },
|
||||
"start_at": "2026-07-01T00:00:00Z",
|
||||
"end_at": "2026-08-01T00:00:00Z",
|
||||
"status": "active",
|
||||
"allowed_channels": [],
|
||||
"drops": [{ "name": "...", "benefits": ["..."] }]
|
||||
}]
|
||||
}</code></pre>
|
||||
<p>
|
||||
Timestamps use ISO 8601 in UTC and may be <code>null</code> when the source does not provide a date. Campaigns with
|
||||
incomplete dates receive the computed status <code>unknown</code> and are excluded from status-based filtering.
|
||||
</p>
|
||||
<p>
|
||||
Additional endpoints include
|
||||
<a href="{% url 'api-v1:twitch-api-v1_list_games' %}">games</a>,
|
||||
<a href="{% url 'api-v1:twitch-api-v1_list_organizations' %}">organizations</a>,
|
||||
<a href="{% url 'api-v1:twitch-api-v1_list_channels' %}">channels</a>,
|
||||
<a href="{% url 'api-v1:twitch-api-v1_list_reward_campaigns' %}">reward campaigns</a>, and
|
||||
<a href="{% url 'api-v1:twitch-api-v1_list_badges' %}">chat badges</a>
|
||||
all public and paginated. Each list endpoint has a corresponding detail view by ID.
|
||||
</p>
|
||||
</section>
|
||||
{% if datasets %}
|
||||
|
|
@ -97,7 +148,7 @@
|
|||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
||||
<p>Found {{ dataset_count }} datasets.</p>
|
||||
<p>{{ dataset_count }} dataset{% if dataset_count != 1 %}s{% endif %} available.</p>
|
||||
{% else %}
|
||||
<p>No dataset backups found.</p>
|
||||
{% endif %}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue