-
Hello, I am using the 'search' API with url pasted below. I want the query to return cases with publication status "published," "unpublished," or "unknown." That is, I want cases that are precedential, non-precedential, and whose status is unknown. But it is only returning cases with status "published." The web search interface returns cases with all three statuses, but the same search query submitted through the API returns only the published (which is, I believe, the same as "precedential") cases. Has anyone had similar problems? Can you suggest solutions? Thanks for any suggestions. url = (f"https://www.courtlistener.com/api/rest/v4/search/?q=%22title%20vii%22%20" |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Thanks for asking this! I think this is due to the change documented here: https://www.courtlistener.com/help/api/rest/v4/migration-guide/#backwards-get-params The front end is still using Solr for a little while longer, so it's still on v3, but the backend is on v4. Try making these tweaks and I think you'll be good? |
Beta Was this translation helpful? Give feedback.
Thanks for asking this! I think this is due to the change documented here:
https://www.courtlistener.com/help/api/rest/v4/migration-guide/#backwards-get-params
The front end is still using Solr for a little while longer, so it's still on v3, but the backend is on v4.
Try making these tweaks and I think you'll be good?