Get an Author

PropertyDescription
MethodGET
Path/open/v1/spaces/$me/authors/{authorId}
Accept-
Content-Typeapplication/json
DescriptionRetrieves an author by its ID.
  • Request
    • Query
      (empty)
    • Body
      // (empty)
      
  • Response
    type AuthorView = {
      author: Author
    }
    

Batch Get Authors

PropertyDescription
MethodGET
Path/open/v1/spaces/$me/authors/batch
Accept-
Content-Typeapplication/json
DescriptionRetrieves multiple authors by IDs. Can fetch up to 25 authors.
  • Request

    • Query

      ParamRequired?DefaultTypeDescriptionExample
      ids[]O-string[]IDs of authors to fetch.?ids[]=42&ids[]=37
    • Body

      // (empty)
      
  • Response

    type AuthorsView = {
      authors: Author[]
    }
    

List Authors of a Space

PropertyDescription
MethodGET
Path/open/v1/spaces/$me/authors
Accept-
Content-Typeapplication/json
DescriptionRetrieves a paginated list of authors in a space, ordered by create timestamp.
  • Request

    • Query

      ParamRequired?DefaultTypeDescriptionExample
      limitX25numberUsed for pagination25
      sinceXstringUsed for pagination1707017182188
      orderXasc‘asc’ | 'desc'Sort orderasc
    • Body

      // (empty)
      
  • Response

    type AuthorsListView = {
      authors: Author[]
      next?: string
    }