Error [PineconeAuthorizationError]: The API key you provided was rejected

I am continuously facing below error. It automatically works sometimes & sometimes doesn’t. Please suggest something

Error [PineconeAuthorizationError]: The API key you provided was rejected while calling https://introduction-to-github-main-0e8980e7625fb7f0-cocga3d.svc.aped-4627-b74a.pinecone.io/vectors/upsert. Please check your configuration values and try again. You can find the configuration values for your project in the Pinecone developer console at https://app.pinecone.io
    at t.mapHttpStatusError (.next/server/chunks/675.js:1:48158)
    at s (.next/server/chunks/675.js:1:44172)
    at async Object.post (.next/server/chunks/675.js:1:218228)
    at async u.fetchApi (.next/server/chunks/675.js:1:189286)
    at async u.request (.next/server/chunks/675.js:1:189780)
    at async u.upsertVectorsRaw (.next/server/chunks/675.js:1:159226)
    at async u.upsertVectors (.next/server/chunks/675.js:1:159452)
    at async o.execute (.next/server/chunks/675.js:1:219649)
    at async a.run (.next/server/chunks/675.js:1:40500) {
  cause: undefined
}

below code is causing error


import { Pinecone } from '@pinecone-database/pinecone'

const pc = new Pinecone({
  apiKey: "key",      
});


  const pineconeIndex = await pc.index(indexName);
  await pineconeIndex.upsert([chunkEmbeddingData]);