メインコンテンツまでスキップ

はじめに

基本仕様

名前内容
ベースURLhttps://api.conarin.com
レートリミット60 req/min
レスポンス形式JSON

エラーレスポンス

名前内容
errorobjectエラー情報が格納されたオブジェクト
error.codenumberHTTPステータスコード
error.messagestringエラーメッセージ

以下はエラーの例です。状況に応じて内容は変化します。

存在しないエンドポイント

{
"error": {
"code": 404,
"message": "Not Found"
}
}

レートリミット

リセットまでの秒数はレスポンスのRateLimit-Resetヘッダーをご確認ください。

{
"error": {
"code": 429,
"message": "Too Many Requests"
}
}

サーバーエラー

{
"error": {
"code": 500,
"message": "Internal Server Error"
}
}