How to invoke official datatracker api search endpoint #7432
Unanswered
fgtrzah
asked this question in
Help / Questions
Replies: 1 comment 1 reply
-
No there isn't currently a specific search api endpoint at the datatracker. The v1 api only exposes the django models - you could build search using it, but it requires understanding the models. (You've already started to build some simple ones at https://github.com/fgtrzah/llmrfcpoc/blob/905534659a3c9302c2a393d85952f79a2e855b81/rfcllm/search/routes.py#L52). The html search endpoint is also fairly limited - be sure it can do what you really need before trying to scrape it. What kind of searches are you wanting to perform? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Where can I find documentation for the api endpoint that the following datatracker search feature uses to conduct search? (does one exist?)
I didn't see any graphql or rest api endpoint appear in network tab when using the search page. I'm beautiful soup and bespoke scraping to programmatically search datatracker for one of my projects, I'd rather not if the datatracker api has a search endpoint but according to:
/api/v1
There isn't one? Details of my current solution outlined here see the
search_ietf
function for reference.Also, didn't see any discussion related to search api:
Please let me know if there's more appropriate place to ask help for this dont know if this belongs here or in issues.
Beta Was this translation helpful? Give feedback.
All reactions