---
title: "Retrieve a publisher by ID"
method: GET
path: "/publishers/{publisherId}"
tags: ["Publishers"]
---

# Retrieve a publisher by ID

`GET /publishers/{publisherId}`

## Path parameters

- `publisherId` string, required

## Response `200`

Publisher retrieved successfully

- Publisher
  - `name` string
  - `id` string — The unique identifier for the publisher. It's akin to a username. Should be lowercase.
  - `description` string
  - `website` string
  - `support` string
  - `source_code_repo` string
  - `logo` string — URL to the publisher's logo.
  - `createdAt` string, date-time — The date and time the publisher was created.
  - `members` PublisherMember[] — A list of members in the publisher.
    - `id` string — The unique identifier for the publisher member.
    - `user` PublisherUser
      - `id` string — The unique id for this user.
      - `email` string — The email address for this user.
      - `name` string — The name for this user.
    - `role` string — The role of the user in the publisher.
  - `status` 'PublisherStatusActive' | 'PublisherStatusBanned'

## Other responses

- `404` — Publisher not found
- `500` — Internal server error

---

[API](https://skmtc.net/comfy-org/apis/comfy-api.md) · [All operations](https://skmtc.net/comfy-org/apis/comfy-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/comfy-org/comfy-api/revisions/fb3c490f87ef/schema)
