fetch
Retrieve complete record data by ID for Meta Ads MCP integration. Use this tool to fetch full JSON response, including id, title, text, and metadata, for specific records such as accounts, campaigns, ads, or pages.
Instructions
Fetch complete record data by ID.
This tool is required for OpenAI ChatGPT Deep Research integration.
It retrieves the full data for a specific record identified by its ID.
Args:
id: The record ID to fetch (format: "type:id", e.g., "account:act_123456")
Returns:
JSON response with complete record data including id, title, text, and metadata
Example Usage:
fetch(id="account:act_123456789")
fetch(id="campaign:23842588888640185")
fetch(id="ad:23842614006130185")
fetch(id="page:123456789")
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | No |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"default": null,
"title": "Id",
"type": "string"
}
},
"title": "fetchArguments",
"type": "object"
}