Skip to main content
The Model Providers API allows you to retrieve and list model providers in the Cross-Media Measurement system. Model providers are parties that build VID models.

Resource

A ModelProvider represents the party that builds VID Models.

ModelProvider

name
string
required
Resource name with pattern modelProviders/{model_provider}
display_name
string
Display name of the ModelProvider

Methods

GetModelProvider

Returns the ModelProvider with the specified resource key.
name
string
required
Resource name of the ModelProvider to retrieve.Format: modelProviders/{model_provider}
Response Returns a ModelProvider resource. Example Request
GetModelProviderRequest {
  name: "modelProviders/123"
}

ListModelProviders

Lists ModelProvider resources.
page_size
int32
The maximum number of ModelProviders to return. The service may return fewer than this value.
  • If unspecified, at most 50 ModelProviders will be returned
  • Maximum value is 1000; values above 1000 will be coerced to 1000
page_token
string
A page token received from a previous ListModelProviders call. Provide this to retrieve the subsequent page.When paginating, all other parameters must match the call that provided the page token.
Response
model_providers
ModelProvider[]
List of ModelProvider resources
next_page_token
string
A token that can be sent as page_token to retrieve the next page. If omitted, there are no subsequent pages.
Example Request
ListModelProvidersRequest {
  page_size: 50
}

Build docs developers (and LLMs) love