Imported posts (manage content created outside Postproxy)
Hey everyone!
Not every post is created through Postproxy (who would've thought?)
Sometimes content is published directly in native apps, through other tools, or existed long before you started using Postproxy. But you still want to see everything in one place: stats, comments, history, without switching between tools.
We’ve added support for imported posts.
So now external posts are shown on Postproxy and you can manage them alongside the ones published through our API.
In the UI, imported posts are clearly marked with an Imported label, so you always know where they came from.
In the API, this is exposed as a source field, which allows you to filter posts based on how they were created.
Example:
curl -X GET "https://api.postproxy.dev/api/posts?source=imported" \
-H "Authorization: Bearer YOUR_API_KEY"
Or if you want to separate your own publishing from everything else:
curl -X GET "https://api.postproxy.dev/api/posts?source=postproxy" \
-H "Authorization: Bearer YOUR_API_KEY"
This becomes useful when you:
-
migrate to Postproxy but still want historical visibility
-
combine multiple publishing tools
-
build dashboards that need a complete view of content
-
run analytics across both automated and manual posts
So, now everything is in one place. As opposed to… whatever was happening before.
Cheers,
Dmitry