google-maps-scraper icon indicating copy to clipboard operation
google-maps-scraper copied to clipboard

Inconsistent id field usage in job creation and retrieval

Open uphiago opened this issue 4 months ago • 0 comments

When creating a job with POST /api/v1/jobs, the response returns the job identifier as "id". However, when querying the job status with GET /api/v1/jobs/{ID}, the API docs/examples suggest using "ID" (uppercase), which introduces confusion

In my workflow (using n8n), this causes issues because:

Create Job response → id (lowercase)

Check Job endpoint → requires ID (uppercase)

To make the API consistent and easier to integrate, it would be better if the field naming was uniform (id in both request/response and path params). Is that make sense?

uphiago avatar Aug 27 '25 17:08 uphiago