# Get topics a user is active in

**URL:** https://meta.discourse.org/t/get-topics-a-user-is-active-in/76130
**Category:** Development
**Tags:** rest-api
**Created:** [12월 15, 2017, 1:53오후 UTC](https://meta.discourse.org/t/get-topics-a-user-is-active-in/76130 "2017-12-15T13:53:46Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![Frank\_Bailey](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/frank_bailey/32/83927_2.png) [@Frank\_Bailey](https://meta.discourse.org/u/Frank_Bailey)
#### Post date: [12월 15, 2017, 1:53오후 UTC](https://meta.discourse.org/t/get-topics-a-user-is-active-in/76130/1 "2017-12-15T13:53:46Z")

</div>

Is there an API endpoint to get all the topics a user has posted in, or perhaps all topics a user has started? We’ve got WordPress and Discourse working together but my client wants to display a list of the user’s topics on the user’s WordPress profile page (which I’ve custom-built from the ground up in WordPress).

---

<div class="post-metadata">

### Author: ![xrav3nz](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/xrav3nz/32/76894_2.png) [@xrav3nz](https://meta.discourse.org/u/xrav3nz)
#### Post date: [12월 15, 2017, 3:32오후 UTC](https://meta.discourse.org/t/get-topics-a-user-is-active-in/76130/2 "2017-12-15T15:32:16Z")

</div>

Try

```http
GET /topics/created-by/<username>.json

```

For example `https://meta.discourse.org/topics/created-by/Frank_Bailey.json`.

* * *

There is a useful guide on how to “reverse engineer” the Discourse APIs:

> [@Reverse engineer the Discourse API](https://meta.discourse.org/t/how-to-reverse-engineer-the-discourse-api/20576):
>
> Discourse is backed by a complete JSON api. Anything you can do on the site you can also do using the JSON api. The API is documented at [docs.discourse.org](https://docs.discourse.org). You can also use the [discourse\_api](https://github.com/discourse/discourse_api) Ruby gem as a client library. However, not every endpoint is documented. To determine how to do something with the JSON API here are some steps you can follow. Example: recategorize a topic. Go to a topic and start editing a category: Open Chrome dev tools, switch to the Network tab, select …

---

<div class="post-metadata">

### Author: ![Frank\_Bailey](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/frank_bailey/32/83927_2.png) [@Frank\_Bailey](https://meta.discourse.org/u/Frank_Bailey)
#### Post date: [12월 15, 2017, 3:50오후 UTC](https://meta.discourse.org/t/get-topics-a-user-is-active-in/76130/3 "2017-12-15T15:50:11Z")

</div>

Nice one. Thanks so much! Am I right in thinking, though, that’s there isn’t a similar one for topics in which the user has only replied but didn’t create?

---

<div class="post-metadata">

### Author: ![neerajsingh](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/neerajsingh/32/165330_2.png) [@neerajsingh](https://meta.discourse.org/u/neerajsingh)
#### Post date: [2월 12, 2020, 6:24오전 UTC](https://meta.discourse.org/t/get-topics-a-user-is-active-in/76130/4 "2020-02-12T06:24:13Z")

</div>

안녕하세요, 사용자가 만든 최신 토픽을 가져오고 싶어요. 인자로 무언가가 전달되면, 제가 어떻게 해야 할지 조언해 주세요. 🙂
