{
  "info": {
    "name": "TwitterShots — mcp.ai",
    "description": "REST API for the TwitterShots MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/twittershots",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "twittershots_generate_temporary_screenshot_url",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/generate/temporary/screenshot/url",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "generate",
            "temporary",
            "screenshot",
            "url"
          ]
        },
        "description": "Render a public tweet or post and return a provider-hosted temporary URL. Download the result promptly or use Generate Tweet Screenshot when it must be retained. A successful render consumes one API c",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"logo\": \"\",\n  \"theme\": \"\",\n  \"width\": 0,\n  \"format\": \"\",\n  \"height\": \"\",\n  \"tweet_id\": \"\",\n  \"show_media\": false,\n  \"show_stats\": false,\n  \"show_views\": false,\n  \"aspect_ratio\": \"\",\n  \"media_layout\": \"\",\n  \"border_radius\": 0,\n  \"show_full_text\": false,\n  \"show_timestamp\": false,\n  \"background_image\": \"\",\n  \"time_zone_offset\": \"\",\n  \"container_padding\": 0,\n  \"container_background\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "twittershots_generate_tweet_screenshot",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/generate/tweet/screenshot",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "generate",
            "tweet",
            "screenshot"
          ]
        },
        "description": "Render a public tweet or post as an SVG, PNG, or HTML file suitable for saving. A successful render consumes one API credit.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"logo\": \"\",\n  \"theme\": \"\",\n  \"width\": 0,\n  \"format\": \"\",\n  \"height\": \"\",\n  \"tweet_id\": \"\",\n  \"show_media\": false,\n  \"show_stats\": false,\n  \"show_views\": false,\n  \"aspect_ratio\": \"\",\n  \"media_layout\": \"\",\n  \"border_radius\": 0,\n  \"show_full_text\": false,\n  \"show_timestamp\": false,\n  \"background_image\": \"\",\n  \"time_zone_offset\": \"\",\n  \"container_padding\": 0,\n  \"container_background\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "twittershots_get_api_usage",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/api/usage",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "api",
            "usage"
          ]
        },
        "description": "Return the remaining and total TwitterShots API credits for the connected API key. This read does not consume a credit.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "twittershots_get_bulk_tweet_content",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/bulk/tweet/content",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "bulk",
            "tweet",
            "content"
          ]
        },
        "description": "Fetch up to 100 public tweets as one Markdown document. Inspect the returned Markdown for a 'Failed to fetch tweets' section because individual IDs can fail within an HTTP 200 response. A successful b",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tweet_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "twittershots_get_tweet_content",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/tweet/content",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "tweet",
            "content"
          ]
        },
        "description": "Fetch one public tweet as structured Markdown, with optional statistics, media links, and quoted-tweet content. A successful call consumes one API credit.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tweet_id\": \"\",\n  \"include_media\": false,\n  \"include_stats\": false,\n  \"include_quoted\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}