Hi, is this the only documentation website available for the Reddit API?
- https://www.reddit.com/dev/api/
Hey,
I'd like to use Reddit from the command line and someone pointed me to the Reddit API. The documentation struck me as a bit complex, though. Could anyone direct me to some kind of simple list of steps for how to use it?
You have to make an account - then, do you download the API to your system, or do you just send HTTP requests or something? What are some specific examples of usage?
Thanks very much for any assistance.
I know a few of the software industry standards of good documentation like Gitlab, but what are some of the gold standard API documentations you’ve seen?
Hi, I am CTO at a startup company and recently we started focusing on streamlining internal processes, so we can increase the efficiency of development.
One of the areas that we have looked into is documentation, specifically the documentation of APIs. We mostly use two types of communication architectures either GraphQL or REST.
When it comes to GraphQL, the documentation part is straightforward. Playground covers all our needs - when Backend finishes the job Frontend can just access the playground and find all the information that they need.
It’s much more complicated with REST, as the documentation part has to be written completely manually. Meaning that after Backend finishes the job someone needs to manually write all the information regarding all the endpoints and this can take lots of time. We currently use Postman for this case, but I would like to find a better solution to these processes.
Has anyone previously come across such a problem? If so, how did you handle it? and is there any software/libraries that can make the process streamer?
Our Backend system is completely on NodeJS and Frontend is NextJS.
The GUI search documentation for reddit (https://www.reddit.com/wiki/search/) says that it is possible to do a reddit search and retrieve Posts, Comments and Subreddits related to the search term.
Is there anyway to do something similar using the API? I've gone through PRAW but it only shows how to search within a Subreddit. What I want is to search reddit using API and retrieve Posts, Comments and Subreddits related to the search term.
Hope I've been able to explain my problem clearly :) I'm very bad in explaining things