Provider Collections

A collection is a curated set of providers like 'Featured', 'Most Popular', or 'New Arrivals'.

Provider Collections object

Attributes

object

String

String representing the object's type

id

String

Unique collection identifier

name

String

Display name of the collection

description

StringNullable

Description of the collection

slug

String

URL-friendly identifier

created_at

Date

Timestamp when created

updated_at

Date

Timestamp when last updated

{
"object": "provider.collection",
"id": "pco_6pQrStUvWxYzAbCd",
"name": "CRM Integrations",
"description": "Providers for customer relationship management",
"slug": "crm",
"created_at": "2025-09-15T10:30:00.000Z",
"updated_at": "2026-01-10T14:45:00.000Z"
}

List provider collections

Returns a paginated list of provider collections.

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/provider-collections
curl -X GET "https://api.metorial.com/provider-collections" \
-H "Authorization: Bearer metorial_sk_..."

Get provider collection

Retrieves a specific provider collection by ID.

URL Parameters

provider_collection_id

String

The unique identifier for the provider_collection

GEThttp://api.metorial.com/provider-collections/:provider_collection_id
curl -X GET "https://api.metorial.com/provider-collections/pro_Rm4Mnheq2bfEPhBhP7SY" \
-H "Authorization: Bearer metorial_sk_..."