Getting 448 webpage not found error
The Error response 448
represents invalid input URL. This error is mostly observed in url to pdf
endpoint when input URL is invalid or not accessible.
For example, when pdf from url
is executed with wrong URL https://abcdefabcdef/testing
it'll return error.
Request:
curl --location --request POST 'https://api.pdf.co/v1/pdf/convert/from/url' \
--header 'x-api-key: YOUR_PDFCO_API_KEY' \
--header 'Content-Type: application/json' \
--data-raw '{
"url": "https://abcdefabcdef/testing"
}'
Response:
{
"error": true,
"status": 448,
"message": "Web page not found",
"credits": 0,
"duration": 8133,
"errorCode": 448
}