Here's how to list all plugins in the post_content placeholder of a djangocms-blog post:
for plugin in post_content.get_plugins():
print(f"{plugin.plugin_type} - [{plugin.position}][{plugin.depth}][{plugin.path}]")
try:
print(plugin.get_plugin_instance()[0].body[:50])
except:
pass
print("\n----\n")