Skip to content
| Marketplace
Sign in
Visual Studio Code>Testing>Speed RequestNew to Visual Studio Code? Get it now.
Speed Request

Speed Request

youaodu

|
20 installs
| (0) | Free
A VSCode extension for quick HTTP requests and API documentation management using .api files
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Speed Request - VSCode HTTP Request Extension

📖 English Documentation | 中文文档

Project Overview

Speed Request is a VSCode extension designed for developers to quickly create and execute HTTP requests directly within the editor. This extension serves not only as a powerful API testing tool but, more importantly, it functions as an API documentation management system, allowing you to easily maintain, organize, and execute HTTP requests during development.

Core Features

  • 🚀 Quick Request Execution: Send HTTP requests directly in the editor without switching to other tools
  • 📚 Documentation Management: Use .api files as living API documentation where requests serve as documentation
  • 🔧 Syntax Highlighting: Custom syntax highlighting support designed specifically for .api files
  • 🌐 Variable Support: Support for global variables and template variables for easy environment switching
  • 📝 Response Recording: Automatically record request responses for debugging and documentation maintenance
  • ✨ Language Support & Auto-Completion: Comprehensive IntelliSense support with smart completions
  • 🎯 Code Snippets: Pre-built templates for rapid API development

Advantages as a Documentation Management Tool

  • Living Documentation: API documentation is no longer static; every request can be executed and validated in real-time
  • Version Control: .api files can be version-controlled alongside code, ensuring documentation stays in sync
  • Team Collaboration: Team members can share and maintain unified API documentation
  • Test Integration: Documentation serves as test cases, ensuring API correctness

Language Support & Auto-Completion

Speed Request provides comprehensive language support for .api files with intelligent auto-completion features that enhance your productivity.

🎯 Auto-Completion Features

HTTP Methods Completion

Type any letter and get suggestions for HTTP methods:

  • GET - Retrieve data from a specified resource
  • POST - Submit data to be processed
  • PUT - Update a resource or create if it doesn't exist
  • DELETE - Delete a specified resource
  • PATCH - Apply partial modifications to a resource
  • HEAD - Same as GET but returns only headers
  • OPTIONS - Returns supported HTTP methods

Section Headers Completion

Smart completion for API file sections:

  • Global: - Define global variables
  • Header: - HTTP headers section
  • Params: - Query parameters section
  • Path: - Path variables section
  • Body: - Request body content
  • Form: - Form data section

HTTP Headers Completion

Common HTTP headers with descriptions:

  • Authorization - Authentication credentials
  • Content-Type - Media type of the request body
  • Accept - Content types the client can process
  • User-Agent - Client software identification
  • Cache-Control - Caching directives
  • Cookie - Stored HTTP cookies
  • X-API-Key - Custom API authentication header

Content-Type Values

Automatic suggestions for common MIME types:

  • application/json
  • application/xml
  • application/x-www-form-urlencoded
  • multipart/form-data
  • text/plain
  • text/html

Variable Completion

  • Global Variables: Shows all defined global variables
  • Template Syntax: Auto-completes {{variableName}} format
  • Context-Aware: Only shows relevant variables based on current context

API Request Templates

Type ### to get a complete API request template with placeholders:

### API Name
METHOD https://api.example.com
Header:
  Authorization: Bearer token

🚀 Usage Tips

Triggering Auto-Completion (Mac)

  • Cmd+I - Primary auto-completion shortcut
  • Option+Esc - Alternative completion trigger
  • Auto-trigger - Completions appear automatically when typing relevant characters

Smart Context Recognition

  • The extension understands your current context and provides relevant suggestions
  • When in a Header: section, you'll see header name completions
  • When typing after Content-Type:, you'll get MIME type suggestions
  • Variable completion appears when you type {{

Syntax Reference

Basic Syntax Structure

1. Global Variable Definition

Global:
  variableName=variableValue
  token=your_api_token
  domain=https://api.example.com

2. HTTP Request Format

### Request Description (Comment)
METHOD URL
Header:
  HeaderName: HeaderValue
  Authorization: Bearer {{token}}
Params:
  paramName=paramValue&paramName2=paramValue2
Path:
  pathVariableName=value
Body:
{
  "json": "data"
}
Form:
{
  "form": "data"
}

Detailed Syntax Examples

Global Variables

Global:
  token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9
  baseUrl=https://api.example.com
  userId=12345

GET Request

### Get User Information
GET {{baseUrl}}/users/{{userId}}
Header:
  Authorization: Bearer {{token}}
  Content-Type: application/json
Params:
  page=1&limit=10

POST Request (JSON Data)

### Create New User
POST {{baseUrl}}/users
Header:
  Authorization: Bearer {{token}}
  Content-Type: application/json
Body:
{
  "name": "John Doe",
  "email": "john.doe@example.com",
  "age": 25
}

POST Request (Form Data)

### Upload User Avatar
POST {{baseUrl}}/users/{{userId}}/avatar
Header:
  Authorization: Bearer {{token}}
Form:
{
  "file": "@/path/to/avatar.jpg",
  "description": "User avatar"
}

PUT Request

### Update User Information
PUT {{baseUrl}}/users/{{userId}}
Header:
  Authorization: Bearer {{token}}
  Content-Type: application/json
Body:
{
  "name": "Jane Smith",
  "email": "jane.smith@example.com"
}

DELETE Request

### Delete User
DELETE {{baseUrl}}/users/{{userId}}
Header:
  Authorization: Bearer {{token}}

Variable System

Global Variables

Variables defined at the top of the file that can be used throughout the entire file:

Global:
  env=development
  apiKey=your_api_key_here

Template Variables

Use {{variableName}} syntax to reference variables:

GET {{baseUrl}}/api/{{version}}/users

Path Parameters

Use the Path: section to define dynamic parameters in the URL path:

GET https://api.example.com/users/{{userId}}/posts/{{postId}}
Path:
  userId=123
  postId=456

Response Handling

After request execution, the response is automatically added to the file:

#### Response
HTTP/1.1 200 OK
Content-Type: application/json
Date: 2025-01-15T10:30:00.000Z
Duration: 245ms

{
  "id": 123,
  "name": "John Doe",
  "email": "john.doe@example.com"
}
####

Usage

  1. Create .api file: Create a file with .api extension in your project
  2. Write requests: Write HTTP requests following the syntax above
  3. Execute requests:
    • Right-click and select "Send API Request"
    • Or use Command Palette and search for "Send API Request"
    • Or use keyboard shortcuts to execute requests
  4. View responses: Responses will be automatically added to the Response section in the file

Best Practices

Documentation Organization

  • Create different .api files for different functional modules
  • Use clear comments to describe the purpose of each request
  • Use global variables wisely to manage environment configurations

Version Control

  • Include .api files in your version control system
  • Regularly update and maintain request documentation
  • Use branches to manage configurations for different environments

Team Collaboration

  • Establish unified naming conventions
  • Share global variable configurations
  • Regularly sync and update API documentation

Installation and Setup

  1. Search for "Speed Request" in the VSCode Extension Marketplace
  2. Click Install
  3. Restart VSCode
  4. Create .api files and start using

Contributing

We welcome Issues and Pull Requests to help improve this project.

License

MIT License

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft