ApplicationBinary

application/grpc

gRPC

Reference for application/grpc, the MIME type for gRPC remote procedure call protocol built on HTTP/2 and Protocol Buffers.

MIME Type Detector

Drop a file to detect its MIME type — no upload, runs in your browser

📄

Drop any file here or click to choose

HTTP Content-Type Header

HTTP Header
Content-Type: application/grpc

Quick Facts

MIME Typeapplication/grpc
CategoryApplication
TypeBinary

Common Usage

gRPC is a high-performance RPC framework that uses HTTP/2 for transport and Protocol Buffers for serialization. It is used for microservice communication, real-time streaming, mobile backends, and polyglot systems.

gRPC supports unary, server streaming, client streaming, and bidirectional streaming.

Code Examples

HTML
<!-- Set MIME type in meta or fetch headers -->
<meta http-equiv="Content-Type" content="application/grpc">
Node.js
// Express.js
app.get('/file', (req, res) => {
  res.type('application/grpc');
  res.send(data);
});

// Node.js http
res.writeHead(200, { 'Content-Type': 'application/grpc' });
nginx
# nginx.conf — add to types block or use default
types {
    application/grpc  grpc;
}

# Or set for a specific location
location /api/ {
    default_type application/grpc;
}

Related MIME Types

More Application MIME Types

Other application types in the Application family

Related Tools

Explore More MIME Types

Browse our complete reference of 185 MIME types with usage examples, HTTP headers, and code snippets.