BlazeMeter API Reference
Comprehensive reference for BlazeMeter REST APIs.
Overview
BlazeMeter provides REST APIs for automating test execution, managing resources, and integrating with external systems. This skill covers API authentication, identifiers, and all available API endpoints.
Quick Start
- Overview: Understand BlazeMeter REST API structure
- Authentication: Configure API key authentication
- Identifiers: Obtain Workspace ID, Project ID, Test ID, and other identifiers
- APIs: Use Test Data API, Cloning API, Export API, and Bulk Operations APIs
MCP Tools Integration
BlazeMeter MCP tools provide programmatic access to BlazeMeter, complementing the REST APIs. The MCP tools offer a higher-level interface for common operations:
Available MCP Tools
- blazemeteruser with action readuser - Read current user information - Returns: User details including default account, workspace, and project
- blazemeteraccount with action read - Read account information - blazemeteraccount with action list - List all accounts - Required args: account_id (integer) for read action
- blazemeterworkspaces with action read - Read workspace details - blazemeterworkspaces with action list - List all workspaces - blazemeterworkspaces with action readlocations - Get location lists - Required args: workspaceid (integer) for read action, accountid (integer) for list action
- blazemeterproject with action read - Read project information - blazemeterproject with action list - List all projects - Required args: projectid (integer) for read action, workspaceid (integer) for list action
- blazemetertests with action read - Read test details - blazemetertests with action list - List all tests - blazemetertests with action create - Create new tests - blazemetertests with action configureload - Configure load settings - blazemetertests with action configurelocations - Configure location distribution - blazemetertests with action uploadassets - Upload test assets - Required args: testid (integer) or project_id (integer)
- blazemeterexecution with action start - Start test execution - blazemeterexecution with action read - Read execution details - blazemeterexecution with action list - List all executions - blazemeterexecution with action readsummary - Get summary report - blazemeterexecution with action readerrors - Get error report - blazemeterexecution with action readrequeststats - Get request statistics - blazemeterexecution with action readallreports - Get all reports - Required args: testid (integer) or execution_id (integer)
- blazemeterhelp with action listhelpcategories - List help categories - blazemeterhelp with action listhelpcategorycontent - List help content - blazemeterhelp with action readhelpinfo - Read help information - Required args: Varies by action
When to Use MCP Tools vs REST APIs
- MCP Tools: Use for high-level operations, automation workflows, and AI agent interactions
- REST APIs: Use for direct API access, custom integrations, and fine-grained control
Example Workflow
Using MCP Tools for API-like Operations:
- Use
blazemeteruser with action readuser to get default workspace and project IDs
- Use
blazemeter_tests with action list to find tests (equivalent to GET /tests API)
- Use
blazemeter_execution with action start to execute tests (equivalent to POST /tests/{testId}/start API)
- Use
blazemeterexecution with action readsummary to get results (equivalent to GET /executions/{executionId}/summary API)
Reference Files
Overview
- [overview.md](skill-blazemeter-api-reference://references/overview.md): BlazeMeter REST APIs, API Overview
Authentication
- [authentication.md](skill-blazemeter-api-reference://references/authentication.md): Authorization, API Keys
Identifiers
- [identifiers.md](skill-blazemeter-api-reference://references/identifiers.md): Get Your Workspace ID, Get the Project ID, Get the Test or Collection ID, Get the Scenario ID, Get the Master ID, Get the Session ID, Get the Location Name
Test Data API
- [test-data-api.md](skill-blazemeter-api-reference://references/test-data-api.md): Test Data API
Cloning API
- [cloning-api.md](skill-blazemeter-api-reference://references/cloning-api.md): Cloning API
Export API
- [export-api.md](skill-blazemeter-api-reference://references/export-api.md): Export API
Bulk Operations
- [bulk-operations.md](skill-blazemeter-api-reference://references/bulk-operations.md): Service Virtualization Bulk Operations APIs
When to Use Each Reference
- Overview: When understanding BlazeMeter REST API structure and endpoints
- Authentication: When configuring API key authentication or authorization
- Identifiers: When obtaining Workspace ID, Project ID, Test ID, or other identifiers for API calls
- Test Data API: When using Test Data API for generating and managing test data
- Cloning API: When cloning services using the Cloning API
- Export API: When exporting services using the Export API
- Bulk Operations: When performing bulk operations on Service Virtualization