Hacktoberfest 2026: the issues maintainers tagged for October, open and beginner-friendly. Browse Hacktoberfest issues

`--fields` silently disables `--all-pages`: only page 1 is returned

Open
#8 2 comments 0 reactions 1 assignee View on GitHub

@adarshdigievo is already working on this.

Since Jul 27, 2026.

Assessment

This issue has not been assessed yet.

Description

--fields and --all-pages are mutually incompatible in practice. Combining them returns page 1 only, exits 0, and prints nothing to stderr. The pagination flag is inert.

Reproduction
# 2 pages, 18 results
serpapi search engine=google q=coffee --all-pages --max-pages 3 | jq '.organic_results | length'
# => 18

# same flags + --fields: 1 page, 8 results
serpapi search --fields "organic_results[].{title,link}" \
  engine=google q=coffee --all-pages --max-pages 3 | jq '.organic_results | length'
# => 8

# --fields alone, no pagination at all
serpapi search --fields "organic_results[].{title,link}" \
  engine=google q=coffee | jq '.organic_results | length'
# => 8

Runs 2 and 3 are byte-identical after jq -S '.organic_results'. adding --all-pages --max-pages 3 changes nothing.

Suspect

Passing --fields sets json_restrictor, which prunes the response server-side. That prune removes serpapi_pagination, the only thing the pagination loop reads to find the next page.


Environment
  • main @ 853dbae
  • go1.25.5, darwin/arm64
  • Verified with live API calls against engine=google
Dominant language
Go
Stars
13
Forks
4
PR merge metrics
No merged PRs in 30d

Contributor guide

No contributing guide indexed for this repository

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

More from serpapi/serpapi-cli

All issues in serpapi/serpapi-cli

Similar issues

More Go issues

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.