get_publisher_metadata
Retrieve detailed metadata for digital advertising publishers using OpenSincera API by entering a publisher ID or domain. Supports result filtering with limit and offset parameters.
Instructions
Get publisher metadata from OpenSincera API. Requires either publisherId or publisherDomain.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of results to return (1-100) | |
offset | No | Number of results to skip | |
publisherDomain | No | Publisher domain to search for | |
publisherId | No | Publisher ID to search for |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"description": "Maximum number of results to return (1-100)",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"offset": {
"description": "Number of results to skip",
"minimum": 0,
"type": "number"
},
"publisherDomain": {
"description": "Publisher domain to search for",
"type": "string"
},
"publisherId": {
"description": "Publisher ID to search for",
"type": "string"
}
},
"required": [],
"type": "object"
}