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

slug

String

URL-friendly identifier

image_url

StringNullable

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",
"slug": "acme-corp",
"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

Maximum number of items to return (1-100)

after

StringOptional

Return items after this ID

before

StringOptional

Return items before this ID

cursor

StringOptional

Pagination cursor from a previous response

order

EnumOptional

Sort order for results

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_..."