{"openapi":"3.1.0","info":{"title":"ainew.jp AIニュース Agent API","version":"1.0","description":"匿名・読み取り専用・API Key不要のAIニュースAPI。要約には必ずainew.jpの閲覧URLと第三者原文URLを含みます。"},"servers":[{"url":"https://news.ainew.jp"}],"paths":{"/api/agent/v1/news":{"get":{"operationId":"getAgentNews","summary":"最新ニュースまたは最近のニュース検索","parameters":[{"name":"window","in":"query","schema":{"type":"string","enum":["24h","7d"],"default":"24h"}},{"name":"q","in":"query","description":"2〜160文字。省略時は最新ニュースを返します。","schema":{"type":"string","minLength":2,"maxLength":160}},{"name":"limit","in":"query","schema":{"type":"integer","minimum":1,"maximum":30,"default":10}},{"name":"sort","in":"query","schema":{"type":"string","enum":["latest","importance"],"default":"importance"}}],"responses":{"200":{"description":"ニュース一覧","content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewsListResponse"}}}},"400":{"$ref":"#/components/responses/Problem"},"429":{"$ref":"#/components/responses/Problem"}}}},"/api/agent/v1/trends":{"get":{"operationId":"getAgentTrends","summary":"直近72時間の上昇トピック","responses":{"200":{"description":"トレンドと根拠記事","content":{"application/json":{"schema":{"type":"object","additionalProperties":true}}}}}}},"/api/agent/v1/digest":{"get":{"operationId":"getAgentDigest","summary":"最新または指定日のデイリーブリーフ","parameters":[{"name":"date","in":"query","schema":{"type":"string","format":"date"}}],"responses":{"200":{"description":"デイリーブリーフ。存在しない場合 report は null。","content":{"application/json":{"schema":{"type":"object","additionalProperties":true}}}},"400":{"$ref":"#/components/responses/Problem"}}}},"/api/agent/v1/articles/{id}":{"get":{"operationId":"getAgentArticle","summary":"記事の要約、分析、出典リンク","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","minLength":1,"maxLength":80}}],"responses":{"200":{"description":"Agent向けに縮約した記事情報。本文は含みません。","content":{"application/json":{"schema":{"type":"object","additionalProperties":true}}}},"404":{"$ref":"#/components/responses/Problem"}}}}},"components":{"schemas":{"AgentNewsItem":{"type":"object","required":["id","title","summary","source","publishedAt","links"],"properties":{"id":{"type":"string"},"title":{"type":"string"},"summary":{"type":"string"},"source":{"type":"string"},"publishedAt":{"type":["string","null"],"format":"date-time"},"importanceScore":{"type":["number","null"]},"tags":{"type":"array","items":{"type":"string"}},"links":{"type":"object","required":["ainew","original"],"properties":{"ainew":{"type":"string","format":"uri"},"original":{"type":"string","format":"uri"}}}}},"NewsListResponse":{"type":"object","required":["schemaVersion","window","count","items","attribution"],"properties":{"schemaVersion":{"type":"string","const":"1.0"},"window":{"type":"string","enum":["24h","7d"]},"count":{"type":"integer"},"items":{"type":"array","items":{"$ref":"#/components/schemas/AgentNewsItem"}},"attribution":{"type":"object","additionalProperties":true}}}},"responses":{"Problem":{"description":"入力エラーまたはレート制限","content":{"application/json":{"schema":{"type":"object","required":["error"],"properties":{"error":{"type":"string"}}}}}}}}}