1

so i am trying to checkout devrant apis on

i want to get access to all rants of my original account "curioustools", so i tried this get api (id is correct, i generated via another user api) .
https://devrant.io/rants/...

it is giving 404, but user does exists . anyone have idea about this api or what am i doing wrong

Comments
  • 1
  • 1
    the user_id, token_id, key ... is if you are logged in by yourself then it will also show a score for the rants you have upvoted
  • 0
    @joewilliams007 got it, thanks!
  • 0
    @joewilliams007 is it paginated though? i want to get all rants at once if it is possible, but let me know the key to get next page and so on if that's the pagination solution. also, can you point me to the documentation of this api?
  • 0
    @dotenvironment i think its actually all rants. But you can check that by looking at first and last and comparing with ur account
  • 1
    @joewilliams007 no it isn't :( it shows only 35 and the repsonse itself says that total rants from the user are 352
  • 0
    @dotenvironment try using

    &range=
    &limit=

    Max for limit is 50 rants per request. I havent tested range yet.
  • 0
    @dotenvironment wait maybe use &skip instead. Then you can skip like 0 first time then 20 second time.

    Like could be &skip= , &range= and &limit=

    I dont know which one :D
Add Comment