What do Blobr error codes correspond to?

// Internal error in Blobr system (ex: database request failed)
StatusCode: 500
ErrorMessage: “Internal Server Error”

// Body is too big
StatusCode: 413
ErrorMessage: “Request body too large - max 150mb allowed”

// API Source timeout
StatusCode: 504
ErrorMessage: “Api Source Timeout - 90s”

// No Blobr API Key provided
StatusCode: 403
ErrorMessage: “Forbidden”

// No Subscription found
StatusCode: 404
ErrorMessage: “No data product found. Please contact your data provider”

// No Active subscription for this product
StatusCode: 404
ErrorMessage: “No current active subscription for this product. Please contact your data provider or subscribe the product”

// Subscription has an unpaid status
StatusCode: 403
ErrorMessage: “This subscription is not active anymore, check your payment status with your data provider”

// Limit reached for this organization
StatusCode: 403
ErrorMessage: “The limit has been reached for your organization, please contact your data provider”

// Limit reached for this product
StatusCode: 403
ErrorMessage: “The limit has been reached for this product, please contact your data provider”

// Rate limit reached for this API
StatusCode: 429
ErrorMessage: “The limit has been reached for this product, please contact your data provider”

// Rate limit reached for this Product
StatusCode: 429
ErrorMessage: “The limit has been reached for this product, please contact your data provider”

// Client requested an invalid filter (ex: GET /user/{username} , and the path /user/{username} is not enabled in the current product)
StatusCode: 403
ErrorMessage: “Endpoint not available”

// The requested path parameter was not provided
StatusCode: 403
ErrorMessage: “No datapoints available for this API path”

// The requested query parameter was not provided
StatusCode: 403
ErrorMessage: “No datapoints available for this API path”

// The process of refreshing the access token for Oauth2.0 API failed
StatusCode: 502
ErrorMessage: “Error Joining Target Api - Please contact your provider”