GET
/
v2
/
topics
/
{urlGroupName}
curl https://qstash.upstash.io/v2/topics/my-url-group \
  -H "Authorization: Bearer <token>"
{
 
  "createdAt": 1623345678001,
  "updatedAt": 1623345678001,
  "name": "my-url-group",
  "endpoints": [
    {
      "name": "my-endpoint",
      "url": "https://my-endpoint.com"
    }
  ]
}

Request

urlGroupName
string
required
The name of the URL Group (topic) to retrieve.

Response

createdAt
int
required
The creation time of the URL Group. UnixMilli
updatedAt
int
required
The update time of the URL Group. UnixMilli
name
string
required
The name of the URL Group.
endpoints
Array
required
curl https://qstash.upstash.io/v2/topics/my-url-group \
  -H "Authorization: Bearer <token>"
{
 
  "createdAt": 1623345678001,
  "updatedAt": 1623345678001,
  "name": "my-url-group",
  "endpoints": [
    {
      "name": "my-endpoint",
      "url": "https://my-endpoint.com"
    }
  ]
}