this post was submitted on 04 Jul 2023
5 points (85.7% liked)

Lemmy Support

4634 readers
1 users here now

Support / questions about Lemmy.

Matrix Space: #lemmy-space

founded 5 years ago
MODERATORS
 

I would like to be able to use the command line (curl) to get a list of communities I am currently subscribed to.

I know that there is a full-blown API, but it only briefly covers what it is possible with simple a curl request, and most of it seems to refer to an API that runs in javascript (which seems excessively complex for what I want to do?)

A simple curl request like this seems to work,

curl "https://mander.xyz/api/v3/community/list" | jq

But I wouldn't know how to make it list only communities that I subscribe to? Does anyone know more?

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 1 points 1 year ago (1 children)

This works! Thanks.

If you're up for it, one last question: just running curl "https://mander.xyz/api/v3/community/list?auth=longstring&type_=Subscribed gives me only a few subscribed communities.

I can increase the number of subscribed communities that I get back, by adding &limit=.

curl "https://mander.xyz/api/v3/community/list?auth=longstring&type_=Subscribed&limit=50"

However, putting the limit too low I don't get all my subscribed communities, while putting the limit too high results in an error.

Is there a way to set limit to "max" or the limit to "nil" or something like that?

[–] [email protected] 2 points 1 year ago (1 children)

Wait, I see, the fetch limit is 50...

Any ideas how I could easily get all communities I subscribed to?

[–] [email protected] 2 points 1 year ago* (last edited 1 year ago)

Ok, I'll keep the monologue going: turns out I can loop through pages with that limit:

curl "https://mander.xyz/api/v3/community/list?auth=longstring&type_=Subscribed&limit=50&page=1

And then

curl "https://mander.xyz/api/v3/community/list?auth=longstring&type_=Subscribed&limit=50&page=2

Etc.