๐จError Codes
When using the AutoContent API, you may encounter various error codes that provide specific information about what went wrong. This page lists all possible error codes and their meanings.
Error Code Reference
0
NotSet
No error occurred
1
LoadingForTooLong
Resource loading for too long. Retry with a different browser
100
InternalError
An internal server error occurred
201
SubscriptionExpired
Your subscription has expired
202
SubscriptionLimitReached
You have reached your subscription limit
301
InvalidOutputType
The specified output type is invalid
302
InvalidResourceType
Invalid resource type. Valid types are website, youtube, text, pdf
501
GoogleNotebookLM_InvalidResource
Invalid resource type. Valid types are website, youtube, text, pdf
502
GoogleNotebookLM_ErrorFetchingUrl
Google NotebookLM says: Error fetching the URL
503
GoogleNotebookLM_RestrictedSource
Google NotebookLM says: Restricted source
504
GoogleNotebookLM_PaywalledSource
Google NotebookLM says: Paywalled source
505
GoogleNotebookLM_ResourceNotFound
Google NotebookLM says: Resource not found
506
GoogleNotebookLM_ResourceNotReachable
Google NotebookLM says: Resource not reachable
507
GoogleNotebookLM_ResourceEmpty
Google NotebookLM says: Resource empty
508
GoogleNotebookLM_YouTubeTranscriptNotAvailable
Google NotebookLM says: YouTube transcript not available
509
GoogleNotebookLM_ResourceNotImported
Google NotebookLM says: Unable to import source. Please try again.
510
GoogleNotebookLM_PodcastNotPublic
Google NotebookLM says: Podcast is not public
Error Categories
General Errors (0-99)
NotSet (0): No error occurred
LoadingForTooLong (1): Resource took too long to load
System Errors (100-199)
InternalError (100): Server-side error occurred
Subscription Errors (201-299)
SubscriptionExpired (201): Your subscription needs renewal
SubscriptionLimitReached (202): You've hit your plan's limits
Validation Errors (301-399)
InvalidOutputType (301): Check the output type parameter
InvalidResourceType (302): Ensure you're using supported resource types
Google NotebookLM Integration Errors (501-599)
These errors occur when using Google NotebookLM integration features:
501-510: Various NotebookLM-specific issues ranging from invalid resources to import failures
Handling Errors in Your Code
When you receive an error response from the API, check the errorCode
field in the response to determine the specific issue:
{
"errorCode": 302,
"message": "Invalid resource type. Valid types are website, youtube, text, pdf",
"status": "error"
}
Recommended Actions
Codes 201-202: Check your subscription status and upgrade if needed
Codes 301-302: Validate your request parameters
Codes 501-510: Check the source URL or resource you're trying to process
Code 1: Try again with a different browser or wait a moment
Code 100: Contact support if the issue persists
Getting Help
If you encounter an error that you can't resolve:
Check this error code reference
Review your request parameters
Contact our support team with the error code and details
For more assistance, visit our support page.
Last updated