Your account is not active, please check your billing details on our website

Hi!
How can I fix this ChatGPT error?
“Your account is not active, please check your billing details on our website.”

Regards!

1 Like

Welcome to the community.

Not so sound daft, but have you checked your billing details? Everything current?

Good luck!

Yes, I even added my credit card to payment methods but the problem still exists :frowning:

Sorry to hear that. Next step would be to reach out to support.

https://help.openai.com/en/

You might also try in another browser?

Good luck!

suddenly it started working!

Hey I have this issue, do not know how to fix this!

Same here. i got plenty of credits available.

as additional informations:

  • the api is reporting the error
  • even openai-playground is reporting the message “Your account is not active, please check your billing details on our website.”
  • it was all working fine for 2 week, so 2 days ago, and now the error is reported
  • im not aware of any change on the account

I sent an email to support and also sent a message to the help staff, but they haven’t replied to me. My payment card has no issues, but I’m still not allowed to use the API. Why is this?

I also have an identical issue. I have plenty of credits, my card is fine and there are no issues with my account. But I still get told by the API that my account is not active?

Me too, I after I paied my bill that showing as follow:

“Your account is not active, please check your billing details on our website.”

I have the exact same issue. Does anyone know why this might have happened? I guarantee there is nothing wrong with my credit, browser, email verification, etc. @navid_dev

1 Like

Same issue here and no response from Open AI Team.

1 Like

I was also struggling with the same problem, but I found a solution. Instead of using the ‘Add payment method’ option in the ‘PaymentMethod’ page, I was able to resolve the issue by adding the payment method through the ‘Set up paid account’ button in the ‘Overview’. This stopped the previous error from appearing.

1 Like

i have the same problem , did u find a solution please?

guys you need to go to billing history and pay your invoices.

If you don’t have overdue invoices just create another api key, it should work.

1 Like

Creating an new API Key worked for me. Thanks.

billing_not_active. I have an account on humanoid @semanta.nl and nave paid for api usga wahts is worn receive this message when using this php script
// API-sleutel voor toegang tot de OpenAI API
$api_key = “■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■j6y6I1kX”;

// Tekst dat je wilt gebruiken als invoer voor de API
$input_text = “Dit is de tekst die je wilt gebruiken als invoer voor de API.”;

// Functie om de API-aanroep uit te voeren
function call_openai_api($api_key, $input_text) {

$data = array(
    'model' => 'gpt-3.5-turbo-0125', // Model dat je wilt gebruiken
    'prompt' => $input_text,
    'max_tokens' => 100 // Maximum aantal tokens voor de gegenereerde tekst
);
$headers = array(
    'Content-Type: application/json',
    'Authorization: Bearer ' . $api_key
);

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data));
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

$response = curl_exec($ch);
curl_close($ch);

return $response;

}

// Roep de API aan om tekst te genereren
$response = call_openai_api($api_key, $input_text);

// Controleer of er een geldige reactie is ontvangen
if ($response) {
$output = json_decode($response, true);
if (isset($output[‘choices’][0][‘text’])) {
// Gegenereerde tekst
$generated_text = $output[‘choices’][0][‘text’];
echo "Gegenereerde tekst: " . $generated_text;
} else {
echo “Fout bij het ophalen van de gegenereerde tekst.”.$response;
}
} else {
echo “Fout bij het maken van de API-aanroep.”;
}

Error: Fout bij het ophalen van de gegenereerde tekst.
{ “error”: { “message”: “Your account is not active, please check your billing details on our website.”, “type”: “billing_not_active”, “param”: null, “code”: “billing_not_active” } }
Please advice how correct this situation