# Profile

Page: https://microblog.dev/api/profile/
API base URL: https://micro.blog

Endpoints for profile-related metadata such as user pins.

## Endpoints
### GET /users/pins/{username}

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

Returns profile pins for the given username.


Path parameters:
- `username` (string, required): Micro.blog username.
  Example: `vincent`





Header parameters:
- `Authorization` (string, required): Bearer token for authentication. Format: `Bearer {token}`.
  Example: `Bearer EF7BB9BCAC1F6D561C93`




Example request:

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

Response:
- Status: 200
- Content-Type: `application/json`
- Description: Returns a JSON response for the requested resource.
Example response:

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

