Provider Categories

A category groups providers by function like 'Developer Tools' or 'ERPs'.

Provider Categories object

Attributes

object

String

String representing the object's type

id

String

Unique category identifier

name

String

Display name of the category

description

StringNullable

Description of providers in this category

slug

String

URL-friendly identifier

created_at

Date

Timestamp when created

updated_at

Date

Timestamp when last updated

{
"object": "provider.category",
"id": "pca_2mNpQrStUvWxYzAb",
"name": "Developer Tools",
"description": "Tools for software development and CI/CD",
"slug": "developer-tools",
"created_at": "2025-09-15T10:30:00.000Z",
"updated_at": "2026-01-10T14:45:00.000Z"
}

List provider categories

Returns a paginated list of provider categories.

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

Get provider category

Retrieves a specific provider category by ID.

URL Parameters

provider_category_id

String

The unique identifier for the provider_category

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