{
  "info": {
    "name": "Countdown API — mcp.ai",
    "description": "REST API for the Countdown API 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/countdown_api",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "countdown_api_clear_all_requests",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/clear/all/requests",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "clear",
            "all",
            "requests"
          ]
        },
        "description": "Clears (removes) all pending requests from a collection. Use this to reset a collection before adding new requests, or to cancel all queued requests. The collection must be in 'idle' status. Returns t",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"collection_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "countdown_api_collections_create_collection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/collections/create/collection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "collections",
            "create",
            "collection"
          ]
        },
        "description": "Tool to create a new collection. Use when you need to batch and orchestrate multiple requests on a schedule.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"enabled\": false,\n  \"priority\": \"\",\n  \"requests_type\": \"\",\n  \"schedule_type\": \"\",\n  \"schedule_hours\": \"\",\n  \"destination_ids\": \"\",\n  \"schedule_minutes\": \"\",\n  \"notification_email\": \"\",\n  \"notification_as_csv\": false,\n  \"notification_as_json\": false,\n  \"notification_webhook\": \"\",\n  \"schedule_days_of_week\": \"\",\n  \"schedule_days_of_month\": \"\",\n  \"notification_csv_fields\": \"\",\n  \"notification_as_jsonlines\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "countdown_api_collections_get_collection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/collections/get/collection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "collections",
            "get",
            "collection"
          ]
        },
        "description": "Tool to retrieve details for a single collection by ID. Use when you need collection metadata and counts for a given collection ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"collection_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "countdown_api_collections_list_collections",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/collections/list/collections",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "collections",
            "list",
            "collections"
          ]
        },
        "description": "Tool to list all collections for the authenticated account. Use when you need to retrieve paginated collections with filtering, sorting, and timing constraints.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"status\": \"\",\n  \"sort_by\": \"\",\n  \"page_size\": 0,\n  \"search_term\": \"\",\n  \"search_type\": \"\",\n  \"created_after\": \"\",\n  \"created_before\": \"\",\n  \"destination_id\": \"\",\n  \"last_run_after\": \"\",\n  \"sort_direction\": \"\",\n  \"last_run_before\": \"\",\n  \"only_with_results\": false,\n  \"only_without_results\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "countdown_api_collections_start_collection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/collections/start/collection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "collections",
            "start",
            "collection"
          ]
        },
        "description": "Start processing a collection's queued requests on the Countdown API. Use this tool to manually trigger a collection to begin executing its requests. The collection must have at least one request adde",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"collection_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "countdown_api_collections_update_collection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/collections/update/collection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "collections",
            "update",
            "collection"
          ]
        },
        "description": "Update an existing collection's settings. Use this to modify collection properties like name, schedule, priority, notification settings, or enabled status. The collection_id must be obtained from list",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"enabled\": false,\n  \"priority\": \"\",\n  \"collection_id\": \"\",\n  \"requests_type\": \"\",\n  \"schedule_type\": \"\",\n  \"schedule_hours\": \"\",\n  \"destination_ids\": \"\",\n  \"schedule_minutes\": \"\",\n  \"notification_email\": \"\",\n  \"notification_as_csv\": false,\n  \"notification_as_json\": false,\n  \"notification_webhook\": \"\",\n  \"schedule_days_of_week\": \"\",\n  \"schedule_days_of_month\": \"\",\n  \"notification_csv_fields\": \"\",\n  \"notification_as_jsonlines\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "countdown_api_core_api_send_request",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/core/api/send/request",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "core",
            "api",
            "send",
            "request"
          ]
        },
        "description": "Tool to fetch eBay autocomplete suggestions. Use when needing search-term-based suggestions from Countdown API.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"type\": \"\",\n  \"ebay_domain\": \"\",\n  \"search_term\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "countdown_api_create_collection_request",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/collection/request",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "collection",
            "request"
          ]
        },
        "description": "Tool to create new requests within a collection for bulk eBay data retrieval. Use when you need to add search, product, reviews, or other eBay data queries to a collection that will be executed on sch",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"requests\": \"\",\n  \"collection_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "countdown_api_create_destination",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/destination",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "destination"
          ]
        },
        "description": "Creates a cloud storage destination where batch result sets will be automatically uploaded. Supports Amazon S3, S3-compatible services (MinIO, DigitalOcean Spaces), Google Cloud Storage, Microsoft Azu",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"type\": \"\",\n  \"enabled\": false,\n  \"s3_region\": \"\",\n  \"s3_endpoint\": \"\",\n  \"oss_region_id\": \"\",\n  \"gcs_access_key\": \"\",\n  \"gcs_secret_key\": \"\",\n  \"oss_access_key\": \"\",\n  \"oss_secret_key\": \"\",\n  \"s3_bucket_name\": \"\",\n  \"s3_path_prefix\": \"\",\n  \"gcs_bucket_name\": \"\",\n  \"gcs_path_prefix\": \"\",\n  \"oss_bucket_name\": \"\",\n  \"oss_path_prefix\": \"\",\n  \"s3_access_key_id\": \"\",\n  \"azure_account_key\": \"\",\n  \"azure_path_prefix\": \"\",\n  \"azure_account_name\": \"\",\n  \"azure_container_name\": \"\",\n  \"s3_secret_access_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "countdown_api_delete_collection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/collection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "collection"
          ]
        },
        "description": "Tool to delete a collection and its configuration by ID. Use when you need to remove an existing, non-running collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"collection_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "countdown_api_delete_destination",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/destination",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "destination"
          ]
        },
        "description": "Tool to delete a destination by ID. Use when you need to remove an existing destination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"destination_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "countdown_api_delete_single_request",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/single/request",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "single",
            "request"
          ]
        },
        "description": "Delete a specific request from a Countdown API collection by its ID. Use this to remove individual requests that are no longer needed. The collection must not be running when deleting requests.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"request_id\": \"\",\n  \"collection_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "countdown_api_destinations_list_destinations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/destinations/list/destinations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "destinations",
            "list",
            "destinations"
          ]
        },
        "description": "Tool to list all destinations configured for the account. Use when you need to inspect or paginate through configured destinations.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"sort_by\": \"\",\n  \"search_term\": \"\",\n  \"sort_direction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "countdown_api_find_collection_requests",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/find/collection/requests",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "find",
            "collection",
            "requests"
          ]
        },
        "description": "Tool to find requests in a collection by custom_id or search query. Use when you need to search for specific requests within a collection using either an exact custom_id match or a text search query.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"q\": \"\",\n  \"page\": 0,\n  \"custom_id\": \"\",\n  \"collection_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "countdown_api_get_account",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/account",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "account"
          ]
        },
        "description": "Tool to retrieve account usage and current platform status. Use when needing to check plan, usage, and quota details for the authenticated user.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "countdown_api_list_error_logs",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/error/logs",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "error",
            "logs"
          ]
        },
        "description": "Tool to list error logs from collection executions. Returns recent errors encountered during request processing with details about failed requests and their causes.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"page_size\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "countdown_api_requests_export_csv",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/requests/export/csv",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "requests",
            "export",
            "csv"
          ]
        },
        "description": "Export all requests from a collection as downloadable CSV files. Returns URLs to CSV files containing the request data. Use this tool when you need to bulk export or download collection request data i",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"collection_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "countdown_api_requests_export_json",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/requests/export/json",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "requests",
            "export",
            "json"
          ]
        },
        "description": "Tool to download all requests in a collection as JSON. Use when you need to export the entire request history for a collection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"collection_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "countdown_api_requests_update_single_request",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/requests/update/single/request",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "requests",
            "update",
            "single",
            "request"
          ]
        },
        "description": "Tool to modify parameters of an existing request in a collection. Use when the collection is not running and you need to update eBay Product Data API parameters.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"body\": {},\n  \"request_id\": \"\",\n  \"collection_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "countdown_api_results_get_result_set",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/results/get/result/set",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "results",
            "get",
            "result",
            "set"
          ]
        },
        "description": "Tool to retrieve a collection run's result set payload. Use after a collection run completes to fetch metadata and download links.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"collection_id\": \"\",\n  \"result_set_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "countdown_api_results_list_result_sets",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/results/list/result/sets",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "results",
            "list",
            "result",
            "sets"
          ]
        },
        "description": "Tool to list result sets produced by a collection. Use when you need to retrieve all summary status of result sets generated by a collection within the 14-day retention window.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"collection_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "countdown_api_results_resend_result_set_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/results/resend/result/set/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "results",
            "resend",
            "result",
            "set",
            "webhook"
          ]
        },
        "description": "Resend the webhook notification for a collection's result set. Use this tool to retry webhook delivery when the original webhook POST failed or timed out. The collection must have a notification_webho",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"collection_id\": \"\",\n  \"result_set_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "countdown_api_stop_all_collections",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/stop/all/collections",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "stop",
            "all",
            "collections"
          ]
        },
        "description": "Tool to stop all collections. Use when you need to halt any running or queued collections after reviewing operations.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "countdown_api_stop_collection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/stop/collection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "stop",
            "collection"
          ]
        },
        "description": "Tool to stop (pause) a single collection’s processing by ID. Use when you need to halt a running or queued collection after confirming the target collection ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"collection_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "countdown_api_update_destination",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/destination",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "destination"
          ]
        },
        "description": "Tool to update a destination's configuration by ID. Use after creating or retrieving a destination to modify its settings.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"type\": \"\",\n  \"enabled\": false,\n  \"s3_region\": \"\",\n  \"s3_endpoint\": \"\",\n  \"oss_region_id\": \"\",\n  \"destination_id\": \"\",\n  \"gcs_access_key\": \"\",\n  \"gcs_secret_key\": \"\",\n  \"oss_access_key\": \"\",\n  \"oss_secret_key\": \"\",\n  \"s3_bucket_name\": \"\",\n  \"s3_path_prefix\": \"\",\n  \"gcs_bucket_name\": \"\",\n  \"gcs_path_prefix\": \"\",\n  \"oss_bucket_name\": \"\",\n  \"oss_path_prefix\": \"\",\n  \"s3_access_key_id\": \"\",\n  \"azure_account_key\": \"\",\n  \"azure_path_prefix\": \"\",\n  \"azure_account_name\": \"\",\n  \"azure_container_name\": \"\",\n  \"s3_secret_access_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}