Publishers

A publisher is the organization or individual who created and maintains a provider.

Publishers object

Attributes

object

String

String representing the object's type

id

String

Unique publisher identifier

name

String

Display name of the publisher

description

StringNullable

Brief description of the publisher

image_url

String

URL of the publisher logo

created_at

Date

Timestamp when created

updated_at

Date

Timestamp when last updated

{
"object": "provider.publisher",
"id": "pub_9hJkLmNpQrStUvWx",
"name": "Acme Corp",
"description": "A leading provider of developer tools",
"image_url": "https://cdn.metorial.com/images/acme.png",
"created_at": "2025-09-15T10:30:00.000Z",
"updated_at": "2026-01-10T14:45:00.000Z"
}

List publishers

Returns a paginated list of publishers.

Query Parameters

limit

NumberOptional

after

StringOptional

before

StringOptional

cursor

StringOptional

order

EnumOptional
GEThttp://api.metorial.com/publishers
curl -X GET "https://api.metorial.com/publishers" \
-H "Authorization: Bearer metorial_sk_..."

Get publisher

Retrieves a specific publisher by ID.

URL Parameters

publisher_id

String

The unique identifier for the publisher

GEThttp://api.metorial.com/publishers/:publisher_id
curl -X GET "https://api.metorial.com/publishers/pub_Rm4Mnheq2bfEPhBhP7SY" \
-H "Authorization: Bearer metorial_sk_..."