Invalid API#
{
"status": 401,
"type": "/exception/client_error/invalid_api_key",
"title": "invalid_api_key",
"detail": "Invalid API key. Please contact support to get the API access."
}
Incorrect Spelling of "Authorization" Header.
Authorization header with incorrect syntax.
Ensure every request must include Authorization header. If you're using an API key, place it in the Headers
in the correct format or syntax as below.Authorization: Bearer your-Api-Key
Ensure the header is spelled as Authorization
.
Ensure that the token or credentials provided in the Authorization header are valid and correctly formatted.
Ensure there are no extra spaces before or after the authorization format.
Verify that there is exactly single space between Bearer
and the your-Api-Key
.
Make sure you are using the correct API key and check that the last four digits match the key listed in the Crop.photo API documentation. It should be included and not accidentally removed.
Invalid Margin value#
{
"status": 400,
"type": "/exception/client_error/invalid_payload",
"title": "invalid_payload",
"detail": "margins value should be in range 0 to 100"
}
The value for margins
exceeds the permitted range.
Incorrect parameter format for margins
.
Incorrect data type for margins
.
Ensure margins
values are within the accepted range.
Ensure the margins
parameter is correctly formattedExample: "margins": 50 (correct)
Example: "margins": "50" (incorrect)
Ensure the value is of the correct integer or float value.
Insufficient Account Balance#
{
"status": 400,
"type": "/exception/client_error/not_enough_balance",
"title": "not_enough_balance",
"detail": "Your account does not have sufficient balance to process API requests."
}
There might be pending payments or an insufficient balance in your account.
The subscription payment was unsuccessful.
The payment for usage beyond your plan's limits (overage) was unsuccessful.
The credits available under the free plan have been exhausted.
Please log in to your account and navigate to the billing page.
Address the issue identified and attempt to use the API once more.
Overage Payment Failed#
{
"status": 400,
"type": "/exception/client_error/overage_payment_failed",
"title": "overage_payment_failed",
"detail": "You have an unpaid balance. Please log in to your account to complete the payment."
}
A previous attempt to pay for usage beyond your plan's limits (overage) was unsuccessful.
Your current subscription plan has expired.
Log in to your crop.photo account.-
Update your credit card information if necessary.
Consider subscribing to a new plan if your current subscription has expired.
If a previous overage payment was unsuccessful, please click on the "Pay now" button to settle the outstanding balance.
Note: After updating your billing information or making a payment, it may take a few minutes for the changes to reflect in your account.
Unable to find matching target resource method#
{
"status": 404,
"type": "/exception/client_error/not_found",
"title": "Unable to find matching target resource method",
"detail": "Unable to find matching target resource method"
}
The specified endpoint does not match any available in the API.
The URL might have been mistyped or does not correspond to any existing API paths.
Special characters that are not properly encoded can cause the server to fail in interpreting the URL correctly.
The method (GET, POST, PUT, DELETE, etc.) used in the request does not match what the API endpoint expects.
Ensure that the URL you're trying to access is correct. Compare it carefully with the documentation provided for the API to confirm it matches exactly. Pay special attention to potential typographical errors.
Sometimes, an unintended space at the end or within the URL can cause the request to fail. Ensure there are no extra spaces in your URL.
Review the URL for any special characters. If present, ensure they are correctly encoded. For example, spaces should be encoded as %20
, and the ampersand &
should be encoded as %26
.
Make sure that the HTTP method you are using (e.g., GET, POST) is the one expected by the API for the endpoint you're trying to reach. Consult the API documentation for guidance on which method to use for each endpoint.
Missing AI Model#
{
"status": 400,
"type": "/exception/client_error/missing_ai_model",
"title": "missing_ai_model",
"detail": "Missing AI model. Please note that analysis hints are only applicable with a designated AI model. For further assistance, refer to the documentation."
}
This exception happens when the ai_model
property is missing and analysis_hint is provided.
Add ai_model
property to your payload.
No Active Subscription#
{
"status": 400,
"type": "/exception/client_error/no_active_subscription",
"title": "no_active_subscription",
"detail": "No active subscription on this account. Please check your account details and make sure you have an active ongoing subscription.",
"extensions": {
"tenant_id": "Your tenant id"
}
}
Your existing subscription has expired.
Payment for the existing subscription has failed.
Otherwise contact our support to resolve your issue.
{
"status": 500,
"type": "/exception/server_error/internal_server_error",
"title": "java.io.IOException: Server returned HTTP response code: 403 for URL: https://mycompany.com/my/image.jpeg"
}
Given input URL in the image is not accessible.
Given input URL is expired or requires authentication.
Make sure the given input URL is accessible on the internet as it is, without any modification or authentication.
If you require further assistance or have any questions, please do not hesitate to contact our customer support team.