Skip to content
Julian Gojani edited this page Nov 7, 2021 · 2 revisions

API-Docs (Under construction)

You want to get posts, blogs or other data from Quotysco or build an own client? Here you are right!

Models

The models are marked as following: $model.MODEL (Example: $model.Blog). Array of model as following: $model.MODEL[] (Example: $model.Blog[])

Blog

{
   "id":6,
   "name":"InteraApps",
   "display_name":"InteraApps", // String - Display Name
   "image": "", // String - image url
   "website": "", // String
   "verified": false, // Boolean - is user verified? 
   "description":"", // String
   "created_at":"2021-11-07 18:30:37",
   "layout_type":"LEFT_NAVIGATION", // Layout-Type [LEFT_NAVIGATION, TOP_NAVIGATION, TOP_NAVIGATION_BIGCARDS]
   "type":"TEAM", // Type [TEAM, USER]
   "follower_count":1, // Integer follower count
   "updated_at":"2021-11-07 18:31:07",
   "success":true,
   "following":true, // Boolean - if current user follows
   "member_of":true // Boolean - if current user is member of the Blog
}

API

Authorization

We use Bearer Tokens for authorization

Authorization: Bearer <You API-Key>

Routes

  • /api/v1
    • /blogs
      • /{name}: $model.Blog
    • /posts
      • /{blog_name}/{post_url}: $model.Post
Clone this wiki locally