Posts
View .mdEndpoints for timeline posts, user posts, replies, media, conversations, search, and post deletion.
https://micro.blog
/posts/all
Retrieves the user’s timeline feed. Returns posts in JSON Feed format with Micro.blog extensions. Supports pagination via query parameters.
Example Request
curl -X GET "https://micro.blog/posts/all" \
--header "Authorization: Bearer EF7BB9BCAC1F6D561C93"
Query Parameters
| Name | Type | Required | Description |
|---|---|---|---|
count
|
integer | Optional |
Maximum number of items to return.
Example:
150
|
since_id
|
integer | Optional |
Only return posts newer than this post ID.
Example:
1
|
before_id
|
integer | Optional |
Only return posts older than this post ID.
Example:
117
|
Header Parameters
| Name | Type | Required | Description |
|---|---|---|---|
Authorization
|
string | Required |
Bearer token for authentication. Format: Bearer {token}.
|
Response Properties
version
string
https://jsonfeed.org/version/1
title
string
Micro.blog - Timeline
home_page_url
string
https://micro.blog
feed_url
string
https://micro.blog/posts/all
_microblog
object
about
string
https://micro.blog/about/api
items
array of object
id
string
77494371
content_html
string
<p>Post content...</p>
summary
string
url
string
https://www.manton.org/2025/11/07/if-you-are-on-the.html
date_published
string
2025-11-07T18:00:00+00:00
author
object
name
string
Manton Reece
url
string
https://manton.org
avatar
string
https://avatars.micro.blog/avatars/2025/22/3.jpg
_microblog
object
_microblog
object
date_relative
string
19:00
date_timestamp
integer
1762538400
is_favorite
boolean
is_bookmark
boolean
is_deletable
boolean
is_conversation
boolean
is_linkpost
boolean
is_mention
boolean
note
string
syndication
array
[https://example.com/syndication/url]
Response
200 OK application/jsonReturns a JSON Feed object containing an array of posts with Micro.blog extensions.
Example Response
{
"version": "https://jsonfeed.org/version/1",
"title": "Micro.blog - Timeline",
"home_page_url": "https://micro.blog",
"feed_url": "https://micro.blog/posts/all",
"_microblog": {
"about": "https://micro.blog/about/api"
},
"items": [
{
"id": "77494371",
"content_html": "<p>If you are on the TestFlight beta for Micro.blog iOS, you will have seen our experiments to enable Liquid Glass. I'm admitting defeat today, going to opt out of the new UI for the next version. There are too many little glitches.</p>\n",
"summary": "",
"url": "https://www.manton.org/2025/11/07/if-you-are-on-the.html",
"date_published": "2025-11-07T18:00:00+00:00",
"author": {
"name": "Manton Reece",
"url": "https://manton.org",
"avatar": "https://avatars.micro.blog/avatars/2025/22/3.jpg",
"_microblog": {
"username": "manton"
}
},
"_microblog": {
"date_relative": "19:00",
"date_timestamp": 1762538400,
"is_favorite": false,
"is_bookmark": false,
"is_deletable": false,
"is_conversation": false,
"is_linkpost": false,
"is_mention": false,
"note": "",
"syndication": [
"https://example.com/syndication/url"
]
}
}
]
}
/posts/all/by_id
Returns one timeline post by query ID.
Example Request
curl -X GET "https://micro.blog/posts/all/by_id?id=12345" \
--header "Authorization: Bearer EF7BB9BCAC1F6D561C93"
Query Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id
|
integer | Required |
Resource identifier.
Example:
12345
|
Header Parameters
| Name | Type | Required | Description |
|---|---|---|---|
Authorization
|
string | Required |
Bearer token for authentication. Format: Bearer {token}.
|
Response
200 OK application/jsonReturns a single timeline post object.
Example Response
{
"version": "https://jsonfeed.org/version/1.1",
"items": []
}
/posts/conversation
Returns the conversation thread for a post, mention, favourite, or thread ID.
Example Request
curl -X GET "https://micro.blog/posts/conversation?id=88924898" \
--header "Authorization: Bearer EF7BB9BCAC1F6D561C93"
Query Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id
|
integer | Required |
Identifier for the resource.
Example:
88924898
|
Header Parameters
| Name | Type | Required | Description |
|---|---|---|---|
Authorization
|
string | Required |
Bearer token for authentication. Format: Bearer {token}.
|
Response
200 OK application/jsonReturns a JSON Feed response.
Example Response
{
"version": "https://jsonfeed.org/version/1.1",
"title": "Micro.blog",
"home_page_url": "https://micro.blog",
"feed_url": "https://micro.blog/posts/conversation",
"items": []
}
/posts/links/search
Searches indexed links and returns JSON Feed.
Example Request
curl -X GET "https://micro.blog/posts/links/search?q=search+term"
Query Parameters
| Name | Type | Required | Description |
|---|---|---|---|
q
|
string | Required |
Search query.
Example:
search term
|
Response
200 OK application/jsonReturns a JSON Feed response.
Example Response
{
"version": "https://jsonfeed.org/version/1.1",
"items": []
}
/posts/links/{prefix}
Returns indexed links matching a host/path prefix in JSON Feed format.
Example Request
curl -X GET "https://micro.blog/posts/links/{prefix}"
Path Parameters
| Name | Type | Required | Description |
|---|---|---|---|
prefix
|
string | Required |
Hostname and optional path prefix.
Example:
example.com/path
|
Response
200 OK application/jsonReturns a JSON Feed response.
Example Response
{
"version": "https://jsonfeed.org/version/1.1",
"items": []
}
/posts/media
Retrieves media posts from the authenticated user timeline in JSON Feed format.
Example Request
curl -X GET "https://micro.blog/posts/media" \
--header "Authorization: Bearer EF7BB9BCAC1F6D561C93"
Query Parameters
| Name | Type | Required | Description |
|---|---|---|---|
count
|
integer | Optional |
Maximum number of items to return.
Example:
25
|
since_id
|
integer | Optional |
Only return posts newer than this post ID.
Example:
77479242
|
before_id
|
integer | Optional |
Only return posts older than this post ID.
Example:
9853826
|
Header Parameters
| Name | Type | Required | Description |
|---|---|---|---|
Authorization
|
string | Required |
Bearer token for authentication. Format: Bearer {token}.
|
Response
200 OK application/jsonReturns a JSON Feed response.
Example Response
{
"version": "https://jsonfeed.org/version/1.1",
"title": "Micro.blog",
"home_page_url": "https://micro.blog",
"feed_url": "https://micro.blog/posts/media",
"items": []
}
/posts/photos
Retrieves photo posts from the authenticated user timeline in JSON Feed format.
Example Request
curl -X GET "https://micro.blog/posts/photos" \
--header "Authorization: Bearer EF7BB9BCAC1F6D561C93"
Query Parameters
| Name | Type | Required | Description |
|---|---|---|---|
count
|
integer | Optional |
Maximum number of items to return.
Example:
25
|
since_id
|
integer | Optional |
Only return posts newer than this post ID.
Example:
77479242
|
before_id
|
integer | Optional |
Only return posts older than this post ID.
Example:
9853826
|
Header Parameters
| Name | Type | Required | Description |
|---|---|---|---|
Authorization
|
string | Required |
Bearer token for authentication. Format: Bearer {token}.
|
Response
200 OK application/jsonReturns a JSON Feed response.
Example Response
{
"version": "https://jsonfeed.org/version/1.1",
"title": "Micro.blog",
"home_page_url": "https://micro.blog",
"feed_url": "https://micro.blog/posts/photos",
"items": []
}
/posts/replies
Returns replies for the authenticated user.
Example Request
curl -X GET "https://micro.blog/posts/replies" \
--header "Authorization: Bearer EF7BB9BCAC1F6D561C93"
Query Parameters
| Name | Type | Required | Description |
|---|---|---|---|
count
|
integer | Optional |
Maximum number of items to return.
Example:
25
|
q
|
string | Optional |
Search query or Micropub query type.
Example:
search term
|
Header Parameters
| Name | Type | Required | Description |
|---|---|---|---|
Authorization
|
string | Required |
Bearer token for authentication. Format: Bearer {token}.
|
Response
200 OK application/jsonReturns a JSON Feed response.
Example Response
{
"version": "https://jsonfeed.org/version/1.1",
"title": "Micro.blog",
"home_page_url": "https://micro.blog",
"feed_url": "https://micro.blog/posts/replies",
"items": []
}
/posts/search
Searches posts visible to the authenticated user.
Example Request
curl -X GET "https://micro.blog/posts/search?q=vincent" \
--header "Authorization: Bearer EF7BB9BCAC1F6D561C93"
Query Parameters
| Name | Type | Required | Description |
|---|---|---|---|
q
|
string | Required |
Search query or Micropub query type.
Example:
vincent
|
count
|
integer | Optional |
Maximum number of items to return.
Example:
25
|
Header Parameters
| Name | Type | Required | Description |
|---|---|---|---|
Authorization
|
string | Required |
Bearer token for authentication. Format: Bearer {token}.
|
Response
200 OK application/jsonReturns a JSON Feed response.
Example Response
{
"version": "https://jsonfeed.org/version/1.1",
"title": "Micro.blog",
"home_page_url": "https://micro.blog",
"feed_url": "https://micro.blog/posts/search",
"items": []
}
/posts/timeline
Retrieves the authenticated user timeline in JSON Feed format.
Example Request
curl -X GET "https://micro.blog/posts/timeline" \
--header "Authorization: Bearer EF7BB9BCAC1F6D561C93"
Query Parameters
| Name | Type | Required | Description |
|---|---|---|---|
count
|
integer | Optional |
count parameter.
Example:
example
|
since_id
|
string | Optional |
Only return posts newer than this post ID.
Example:
77479242
|
before_id
|
string | Optional |
Only return posts older than this post ID.
Example:
9853826
|
Header Parameters
| Name | Type | Required | Description |
|---|---|---|---|
Authorization
|
string | Required |
Bearer token for authentication. Format: Bearer {token}.
|
Response
200 OK application/jsonReturns a JSON Feed response.
Example Response
{
"version": "https://jsonfeed.org/version/1.1",
"items": []
}
/posts/timeline/{id}
Returns one timeline post by ID.
Example Request
curl -X GET "https://micro.blog/posts/timeline/{id}?id=2" \
--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 |
|---|---|---|---|
id
|
integer | Required |
Identifier for the resource.
Example:
12345
|
Response
200 OK application/jsonReturns a JSON Feed response.
Example Response
{
"version": "https://jsonfeed.org/version/1.1",
"title": "Micro.blog",
"home_page_url": "https://micro.blog",
"feed_url": "https://micro.blog/posts/timeline/{id}",
"items": []
}
/posts/{id}
Deletes one of the authenticated user’s posts by ID.
Example Request
curl -X DELETE "https://micro.blog/posts/{id}" \
--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 |
|---|---|---|---|
id
|
integer | Required |
Identifier for the resource.
Example:
12345
|
Response
200 OK application/jsonReturns an empty JSON object on success.
Example Response
{}
/posts/{username}
Returns a user profile and recent posts for the given username.
Example Request
curl -X GET "https://micro.blog/posts/{username}" \
--header "Authorization: Bearer EF7BB9BCAC1F6D561C93"
Query Parameters
| Name | Type | Required | Description |
|---|---|---|---|
count
|
integer | Optional |
Maximum number of items to return.
Example:
0
|
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/jsonReturns a JSON Feed response.
Example Response
{
"version": "https://jsonfeed.org/version/1.1",
"title": "Micro.blog",
"home_page_url": "https://micro.blog",
"feed_url": "https://micro.blog/posts/{username}",
"items": []
}
/posts/{username}/photos
Returns public photo posts for a user in JSON Feed format.
Example Request
curl -X GET "https://micro.blog/posts/{username}/photos"
Query Parameters
| Name | Type | Required | Description |
|---|---|---|---|
count
|
integer | Optional |
count parameter.
Example:
example
|
Path Parameters
| Name | Type | Required | Description |
|---|---|---|---|
username
|
string | Required |
Micro.blog username.
Example:
vincent
|
Response
200 OK application/jsonReturns a JSON Feed response.
Example Response
{
"version": "https://jsonfeed.org/version/1.1",
"items": []
}