無料AIニュースAPI
REST API で 35 以上のソースから精選された AI ニュースデータにアクセス。テクノロジー、投資、ヒント、動画 — 8 言語、JSON 形式、認証不要。
AIニュースAPIはどのようなエンドポイントを提供しますか?
REST APIでキュレーション済みAIニュースデータにプログラムからアクセスできます。コンテンツ系エンドポイントは生成済みのすべての翻訳(最大8言語)を含むJSONを返し、/weeksは期間リストを返します。Period IDはYYYY-MM-DD(日次)またはYYYY-kwWW(週次)形式。
/api/weeks利用可能な全期間をリスト(日付内包の週)
/api/tech/{periodId}テクノロジーニュース + 動画要約
/api/investment/{periodId}資金調達ラウンド、M&A、市場ニュース
/api/tips/{periodId}Reddit + ブログからの実践的AIヒント
/api/videos/{periodId}厳選YouTube動画要約
/api/trends/{periodId}トレンドAIトピック
AIニュースAPIの使い方は?
当社APIで数秒で始められます。3つの人気言語の例 — ライブラリ不要、セットアップ不要、シンプルなHTTPコールだけ:
cURL
curl -s https://api-production-3ee5.up.railway.app/api/tech/2026-02-26 | python -m json.toolJavaScript
// Fetch AI tech news for a specific day
const response = await fetch(
'https://api-production-3ee5.up.railway.app/api/tech/2026-02-26'
);
const data = await response.json();
// data.en = Array of English tech articles
// data.de = Array of German tech articles
// data.zh, data.fr, data.es, data.pt, data.ja, data.ko
console.log(data.en[0].content);Python
import json, urllib.request
# Fetch AI tech news for a specific day (standard library only)
with urllib.request.urlopen(
'https://api-production-3ee5.up.railway.app/api/tech/2026-02-26'
) as response:
data = json.load(response)
# data['en'] = List of English tech articles
# data['de'] = List of German tech articles
for article in data['en']:
print(article['content'])APIレスポンスはどのようなものですか?
コンテンツ系エンドポイントは、生成済みのすべての翻訳(最大8言語)を含む多言語JSONを返します。典型的なレスポンス例:
{
"de": [
{
"id": 1,
"content": "OpenAI stellt GPT-5 vor...",
"source": "TechCrunch",
"category": "LLM",
"impact": "high",
"timestamp": "2026-02-26T14:30:00Z"
}
],
"en": [
{
"id": 1,
"content": "OpenAI introduces GPT-5...",
"source": "TechCrunch",
"category": "LLM",
"impact": "high",
"timestamp": "2026-02-26T14:30:00Z"
}
],
"zh": [...],
"fr": [...],
"es": [...],
"pt": [...],
"ja": [...],
"ko": [...]
}なぜDataCube AIニュースAPIを使うのか?
認証不要
無料プランはAPIキーや登録不要。エンドポイントを呼び出すだけでデータを取得。
8言語データ
コンテンツ系エンドポイントは生成済みのすべての翻訳を含みます — 最大8言語:ドイツ語、英語、中国語、フランス語、スペイン語、ポルトガル語、日本語、韓国語。
35以上のソース
TechCrunch、MIT Technology Review、Ars Technica、Hacker News、Reddit、YouTubeからの厳選コンテンツ。
株価データ(一時停止中)
株価データはライセンス審査のため一時停止中です(stock エンドポイントは HTTP 410 を返します)。
毎日更新
データは毎日ベルリン時間の深夜に自動更新。週間ダイジェストも利用可能。
JSON形式
全レスポンスはきれいに構造化されたJSON。パースが簡単で、あらゆるアプリですぐに使用可能。
よくある質問
AIニュースAPIとは?
APIは無料ですか?
認証は必要ですか?
どのデータ形式がサポートされていますか?
データはどのくらいの頻度で更新されますか?
その他の無料AIツール
AIニュースデータで開発を始める
世界中の開発者に信頼されています