get opinion through citation #4048
-
Is there a way to get to an opinion text if I know the citation, like e.g. here the volume, reporter and page are in the url https://cite.case.law/minn/310/454/ |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
You'll need to look up the citation (and they're not unique), but once you do, you can get the text from that. Check out the Citation Lookup API: https://www.courtlistener.com/help/api/rest/v3/citation-lookup/ |
Beta Was this translation helpful? Give feedback.
-
but it does not return the opinion_text or cluster_id or any other
connecting link to opinion_text. what am i missing?
…On Wed, May 15, 2024 at 12:49 PM Mike Lissner ***@***.***> wrote:
You'll need to look up the citation (and they're not unique), but once you
do, you can get the text from that. Check out the Citation Lookup API:
https://www.courtlistener.com/help/api/rest/v3/citation-lookup/
—
Reply to this email directly, view it on GitHub
<#4048 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/BCNHY27KEKP2X6MWXDUOOXTZCOGZLAVCNFSM6AAAAABHYDW6B6VHI2DSMVQWIX3LMV43SRDJONRXK43TNFXW4Q3PNVWWK3TUHM4TINBYGU2TC>
.
You are receiving this because you authored the thread.Message ID:
<freelawproject/courtlistener/repo-discussions/4048/comments/9448551@
github.com>
|
Beta Was this translation helpful? Give feedback.
-
I took the same examples as listed on the page
curl -X POST "https://www.courtlistener.com/api/rest/v3/citation-lookup/" \
…--header 'Authorization: Token my_token' \
--data 'volume=576' \
--data 'reporter=U.S.' \
--data 'page=644'
so , to get to the text of the opinion , do one more step
extract cluster_id and run another API call with cluster_id?
On Wed, May 15, 2024 at 1:38 PM Mike Lissner ***@***.***> wrote:
Can you share the query you made and the response?
—
Reply to this email directly, view it on GitHub
<#4048 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/BCNHY24L2PLWED3FUHRTFRLZCOMSXAVCNFSM6AAAAABHYDW6B6VHI2DSMVQWIX3LMV43SRDJONRXK43TNFXW4Q3PNVWWK3TUHM4TINBZGA2TI>
.
You are receiving this because you authored the thread.Message ID:
<freelawproject/courtlistener/repo-discussions/4048/comments/9449054@
github.com>
|
Beta Was this translation helpful? Give feedback.
That's going to give you the cluster object, which has a key for sub_opinions. You'll find the text in the sub_opinion objects.