Provider Listings

A listing is a provider enriched with marketplace metadata.

Provider Listings object

Attributes

object

String

String representing the object's type

id

String

Unique listing identifier

name

String

Display name

description

StringNullable

Full description

slug

String

URL-friendly identifier

image_url

StringNullable

URL of the listing logo/icon

readme

StringNullable

README content in markdown

skills

Array of Strings

Capability tags

flags

Object

Status flags for the listing

provider_id

StringNullable

Associated provider ID

categories

Object

Provider categories for organization and filtering

collections

Object

Provider collections this provider belongs to

groups

Object

User groups with access to this provider

created_at

Date

Timestamp when created

updated_at

Date

Timestamp when last updated

{
"object": "provider.listing",
"id": "plg_8kLmNpQrStUvWxYz",
"name": "GitHub",
"description": "Connect to GitHub repositories, issues, and pull requests",
"slug": "github",
"image_url": "https://cdn.metorial.com/images/github.png",
"readme": "# GitHub\n\nConnect to GitHub repositories, issues, and pull requests.",
"skills": [
"code-review",
"pull-requests"
],
"flags": {
"is_public": true,
"is_customized": false,
"is_metorial": true,
"is_verified": true,
"is_official": false
},
"provider_id": "pro_5gHjKlMnPqRsTuVw",
"categories": [
{
"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"
}
],
"collections": [
{
"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"
}
],
"groups": [
{
"object": "provider.group",
"id": "pgr_3nPqRsTuVwXyZaBc",
"name": "Sales Integrations",
"description": "CRM and sales pipeline integrations for sales agents",
"slug": "sales-integrations",
"created_at": "2025-09-15T10:30:00.000Z",
"updated_at": "2026-01-10T14:45:00.000Z"
}
],
"created_at": "2025-09-15T10:30:00.000Z",
"updated_at": "2026-01-10T14:45:00.000Z"
}

List provider listings

Returns a paginated list of provider listings.

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

search

StringOptional

provider_id

UnionOptional

provider_version_id

StringOptional

provider_category_id

UnionOptional

provider_collection_id

UnionOptional

provider_group_id

UnionOptional

publisher_id

UnionOptional

flags

ObjectOptional
GEThttp://api.metorial.com/provider-listings
curl -X GET "https://api.metorial.com/provider-listings" \
-H "Authorization: Bearer metorial_sk_..."

Get provider listing

Retrieves a specific provider listing by ID.

URL Parameters

provider_listing_id

String

The unique identifier for the provider_listing

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