Build with Micro.blog logo
Build with Micro.blog
API Documentation

Profile

View .md

Endpoints for profile-related metadata such as user pins.

BASE URL https://micro.blog
GET /users/pins/{username}

Returns profile pins for the given username.

Example Request

curl -X GET "https://micro.blog/users/pins/{username}" \
  --header "Authorization: Bearer EF7BB9BCAC1F6D561C93"

Header Parameters

Name Type Required Description
Authorization string Required Bearer token for authentication. Format: Bearer {token}.

Path Parameters

Name Type Required Description
username string Required Micro.blog username.
Example: vincent

Response

200 OK application/json

Returns a JSON response for the requested resource.

Example Response

[
  {
    "title": "Welcome",
    "description": "Created your Micro.blog account.",
    "icon": "https://micro.blog/images/pins/welcome.png",
    "is_unlocked": true
  }
]