API is not returning post Name value

I’m trying to fetch post details via the api, but it appears the response has null on the name field for all posts I query.

Example trimmed response:

{
    "id": 15,
    "name": null,
    "username": "Jeremy",
    "avatar_template": "/user_avatar/redacted/jeremy/{size}/3_2.png",
    "created_at": "2025-01-28T05:00:56.331Z",
    "cooked": "<p>Placeholder content tbd</p>",
    "post_number": 1,
    "post_type": 1,
    "posts_count": 1,
    "updated_at": "2025-01-28T05:00:56.331Z",

There’s another value that I would think might contain the name of the post, user_title but that is also null. Is there a setting somewhere I’m missing? And yes these posts do in fact have titles.

1 Like

Hey, welcome to meta!

The name field usually refers to the user’s name. It will be null if no name is defined in your profile (below the username).

Are you looking for the topic title?

Yep, with some extra poking, I was able to decipher how the api (and discourse) is supposed to work hierarchically. So now I’m fetching a single topic and just grabbing the first post in the post_stream.

Does post_stream return all posts on the topic? Or can I limit it in some way?

1 Like

My use case is that I have an angular application and I’m trying to pull in Discourse posts to essentially make a pseudo-blog that’s integrated into that application. So far this seems entirely doable.

1 Like

post_streamposts returns the first 20 posts. You can use ?page= query.
post_streamstreams returns all the topic post IDs.

Additional guide if you want to get specific posts:

1 Like