directory API methods
A directory of profiles that your website is aware of.
Last modified
Edit this page
View profile directory
GET /api/v1/directory HTTP/1.1
List accounts visible in the directory.
Returns: Array of
Account
OAuth: Public
Version history:
3.0.0 - added
Request
Query parameters
- offset
- Number. Skip the first n results.
- limit
- Number. How many accounts to load. Defaults to 40 accounts. Max 80 accounts.
- order
- String. Use
active
to sort by most recently posted statuses (default) ornew
to sort by most recently created profiles. - local
- Boolean. If true, returns only local accounts.
Response
200: OK
Sample results with limit=2
[
{
"id": "796927",
"username": "eternalNo3",
"acct": "eternalNo3@best-friends.chat",
"display_name": "ESDοΌ βοΌθ°·οΌβ",
// ...
},
{
"id": "787648",
"username": "ariel",
"acct": "ariel@best-friends.chat",
"display_name": "γγγ£γγΌπ§π»ββοΈ",
// ...
}
]