---
slug: "openai-api-でクレジットが足りているのに-429-が出る場合"
title: "OpenAI API で、クレジットが足りているのに 429 が出る場合"
description: "Mac で `python3` を Homebrew 経由でインストール後 `symbol not found in flat namespace` が出る場合の対処。ライブラリリンクの確認と再インストール。"
url: "https://www.ytyng.com/blog/openai-api-でクレジットが足りているのに-429-が出る場合"
publish_date: "2025-04-19T08:59:30Z"
created: "2025-04-19T08:59:30Z"
updated: "2026-05-11T13:21:38.004Z"
categories: []
keywords: ""
featured_image_url: "https://media.ytyng.com/resize/20250503/c48170a626b14a729b9e02ae6dbb0a18.png.webp?width=768"
has_video: true
has_music: true
video_urls: ["https://media.ytyng.net/ytyng-blog/320/featured-video-1.mp4", "https://media.ytyng.net/ytyng-blog/320/featured-video-2.mp4", "https://media.ytyng.net/ytyng-blog/320/featured-video-3.mp4"]
music_urls: ["https://media.ytyng.net/ytyng-blog/320/featured-music-320-1.mp3?v=2", "https://media.ytyng.net/ytyng-blog/320/featured-music-320-3.mp3"]
lang: "ja"
---

# OpenAI API で、クレジットが足りているのに 429 が出る場合

OpenAI の APIで、クレジットが入っているにもかかわらず、APIリクエスト時に

```
HTTP 429
```

```json
{
    "error": {
        "message": "You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.",
        "type": "insufficient_quota",
        "param": null,
        "code": "insufficient_quota"
    }
}
```

がレスポンスされる状態となった。

APIキーや Project を作り直してみても状況は変わらなかった。

ためしに、**$5 のチャージを追加でしてみたら解消された。**

おそらく、アカウント作成直後の無料枠で使っていながら、クレジットをチャージすると発生する気がする。
