404 Not Found Error #83

Closed
opened 2026-02-16 00:16:49 -05:00 by yindo · 1 comment
Owner

Originally created by @VaradDeshmukh97 on GitHub (Apr 14, 2024).

Whenever I try to parse a PDF file using the API Key, it gives me the 404 Not Found Error. The file is located on my local system and I am giving it the correct link. Here is the code:

from llama_parse import LlamaParse
pdf_files = [
    r"path-to-my-pdf-file"
]
parser = LlamaParse(
    api_key="llx-*****",
    result_type="markdown"
)
pdfs = await parser.aload_data(pdf_files)   # async

The error log is:

INFO:httpx:HTTP Request: POST https://api.cloud.llamaindex.ai/api/parsing/upload "HTTP/1.1 200 OK"
HTTP Request: POST https://api.cloud.llamaindex.ai/api/parsing/upload "HTTP/1.1 200 OK"
Started parsing the file under job_id 2c222c45-b044-499b-845c-086955d8ac04
INFO:httpx:HTTP Request: GET https://api.cloud.llamaindex.ai/api/parsing/job/2c222c45-b044-499b-845c-086955d8ac04/result/markdown "HTTP/1.1 404 Not Found"
HTTP Request: GET https://api.cloud.llamaindex.ai/api/parsing/job/2c222c45-b044-499b-845c-086955d8ac04/result/markdown "HTTP/1.1 404 Not Found"
INFO:httpx:HTTP Request: GET https://api.cloud.llamaindex.ai/api/parsing/job/2c222c45-b044-499b-845c-086955d8ac04/result/markdown "HTTP/1.1 404 Not Found"
HTTP Request: GET https://api.cloud.llamaindex.ai/api/parsing/job/2c222c45-b044-499b-845c-086955d8ac04/result/markdown "HTTP/1.1 404 Not Found"
INFO:httpx:HTTP Request: GET https://api.cloud.llamaindex.ai/api/parsing/job/2c222c45-b044-499b-845c-086955d8ac04/result/markdown "HTTP/1.1 404 Not Found"
HTTP Request: GET https://api.cloud.llamaindex.ai/api/parsing/job/2c222c45-b044-499b-845c-086955d8ac04/result/markdown "HTTP/1.1 404 Not Found"
INFO:httpx:HTTP Request: GET https://api.cloud.llamaindex.ai/api/parsing/job/2c222c45-b044-499b-845c-086955d8ac04/result/markdown "HTTP/1.1 404 Not Found"
HTTP Request: GET https://api.cloud.llamaindex.ai/api/parsing/job/2c222c45-b044-499b-845c-086955d8ac04/result/markdown "HTTP/1.1 404 Not Found"
INFO:httpx:HTTP Request: GET https://api.cloud.llamaindex.ai/api/parsing/job/2c222c45-b044-499b-845c-086955d8ac04/result/markdown "HTTP/1.1 404 Not Found"
HTTP Request: GET https://api.cloud.llamaindex.ai/api/parsing/job/2c222c45-b044-499b-845c-086955d8ac04/result/markdown "HTTP/1.1 404 Not Found"
Originally created by @VaradDeshmukh97 on GitHub (Apr 14, 2024). Whenever I try to parse a PDF file using the API Key, it gives me the 404 Not Found Error. The file is located on my local system and I am giving it the correct link. Here is the code: ``` from llama_parse import LlamaParse pdf_files = [ r"path-to-my-pdf-file" ] parser = LlamaParse( api_key="llx-*****", result_type="markdown" ) pdfs = await parser.aload_data(pdf_files) # async ``` The error log is: ``` INFO:httpx:HTTP Request: POST https://api.cloud.llamaindex.ai/api/parsing/upload "HTTP/1.1 200 OK" HTTP Request: POST https://api.cloud.llamaindex.ai/api/parsing/upload "HTTP/1.1 200 OK" Started parsing the file under job_id 2c222c45-b044-499b-845c-086955d8ac04 INFO:httpx:HTTP Request: GET https://api.cloud.llamaindex.ai/api/parsing/job/2c222c45-b044-499b-845c-086955d8ac04/result/markdown "HTTP/1.1 404 Not Found" HTTP Request: GET https://api.cloud.llamaindex.ai/api/parsing/job/2c222c45-b044-499b-845c-086955d8ac04/result/markdown "HTTP/1.1 404 Not Found" INFO:httpx:HTTP Request: GET https://api.cloud.llamaindex.ai/api/parsing/job/2c222c45-b044-499b-845c-086955d8ac04/result/markdown "HTTP/1.1 404 Not Found" HTTP Request: GET https://api.cloud.llamaindex.ai/api/parsing/job/2c222c45-b044-499b-845c-086955d8ac04/result/markdown "HTTP/1.1 404 Not Found" INFO:httpx:HTTP Request: GET https://api.cloud.llamaindex.ai/api/parsing/job/2c222c45-b044-499b-845c-086955d8ac04/result/markdown "HTTP/1.1 404 Not Found" HTTP Request: GET https://api.cloud.llamaindex.ai/api/parsing/job/2c222c45-b044-499b-845c-086955d8ac04/result/markdown "HTTP/1.1 404 Not Found" INFO:httpx:HTTP Request: GET https://api.cloud.llamaindex.ai/api/parsing/job/2c222c45-b044-499b-845c-086955d8ac04/result/markdown "HTTP/1.1 404 Not Found" HTTP Request: GET https://api.cloud.llamaindex.ai/api/parsing/job/2c222c45-b044-499b-845c-086955d8ac04/result/markdown "HTTP/1.1 404 Not Found" INFO:httpx:HTTP Request: GET https://api.cloud.llamaindex.ai/api/parsing/job/2c222c45-b044-499b-845c-086955d8ac04/result/markdown "HTTP/1.1 404 Not Found" HTTP Request: GET https://api.cloud.llamaindex.ai/api/parsing/job/2c222c45-b044-499b-845c-086955d8ac04/result/markdown "HTTP/1.1 404 Not Found" ```
yindo closed this issue 2026-02-16 00:16:49 -05:00
Author
Owner

@VaradDeshmukh97 commented on GitHub (Apr 14, 2024):

I generated a new LlamaParse API Key and it is currently working for me. Closing as of now.

@VaradDeshmukh97 commented on GitHub (Apr 14, 2024): I generated a new LlamaParse API Key and it is currently working for me. Closing as of now.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: run-llama/llama_cloud_services#83