HTTP headers and common query string parameters for JSON Stay organized with collections Save and categorize content based on your preferences.
The Cloud Storage API uses standard HTTP headers as well asseveral extension (custom) HTTP headers. This page describes:
- All headers used by the JSON API
- The query parameters that apply to any JSON API request
Seespecific methods for additional query string parameters not covered inthis page.
HTTP headers and common query string parameters summary
The JSON API uses the following standard HTTP headers:
| Authorization Cache-Control Content-ID Content-Length Content-Range | Content-Type Content-Transfer-Encoding Date ETag Expires | If-Match If-None-Match Location Range Transfer-Encoding |
The JSON API uses the following extension (custom) HTTP headers:
The JSON API uses the following query string parameters:
| alt callback fields | prettyPrint quotaUser userProject |
Standard HTTP headers
Authorization
A request header that contains a string used to authenticate requests.
| Valid Values | The authentication identifierBearer followed by a valid OAuth 2.0 token. |
| Example | Authorization: Bearer ya29.AHES6ZRVmB7fkLtd1XTmq6mo0S1wqZZi3-Lh_s- ... |
| Details | You must send an OAuth 2.0 token with every request that requires an OAuth scope.OAuth 2.0 is the only supported authorization protocol. To create a sample access token for testing, use theOAuth 2.0 playground. Note: If your requests are being routed through a proxy, you might need to check with your network administrator to ensure that required For additional details, see thespecification. |
Cache-Control
A response header that indicates the caching directive for the request.
| Valid Values | Any valid cache-control value (see thespecification). |
| Example | Cache-Control: public, max-age=6000 |
| Details | Indicates if, and how, the response can be cached. When serving publicly accessible objects from Cloud Storage, the value forCache-Control is determined by theCache-Control metadata set on the object. To be considered publicly accessible, permission to read the object's data must be available forallUsers. If an object is publicly accessible and you have notset the object'sCache-Control metadata, Cloud Storage applies aCache-Control setting of 3600 seconds. When serving an object via the JSON API that is not publicly accessible, Cloud Storage sets the response toCache-Control: no-cache, regardless of the metadata settings for the object. For additional details, see thespecification. |
Content-ID
An optional identifier in the part-header of amultipart request.
| Valid Values | An identifier that is unique within the parts of the request. |
| Example | Content-ID: <b29c5de2-0db4-490b-b421-6a51b598bd22+1> |
| Details | Content-ID is only used in the body of multipart (batch) requests and only as an identifier of requests within the body. If included, any response will have a matchingContent-ID header in the corresponding part whose value will beresponse- followed by the originally supplied ID. For additional details, see thespecification. |
Content-Length
The length (in bytes) of the request or response body.
| Valid Values | Any value of zero or greater. |
| Example | Content-Length: 1234 |
| Details | This is required for most POST and PUT commands used in uploading objects, except if you are using the headerTransfer-Encoding: chunked. When making the initial request of aresumable upload, this header should be set to the number of bytes provided in that specific request. For more information, seeObjects:insert. For additional details, see thespecification. |
Content-Range
A header used in some upload requests and download responses.
| Valid Values | Any contiguous range of bytes. |
| Example | Content-Range: bytes 456-987/1234 |
| Details | When appearing in a response, the When included as part of aresumable upload request, Byte ranges are inclusive; that is, For additional details, particularly regarding download responses, see thespecification. |
Content-Transfer-Encoding
A header used in some upload requests and download responses.
| Valid Values | An optional request and response header that indicates the type of encoding that has been applied to the message body. |
| Example | Content-Transfer-Encoding: binary |
| Details | This header specifies the encoding of a message body in a request. For additional details, see thespecification. |
Content-Type
The MIME type of the request or response.
| Valid Values | Any valid MIME type. |
| Example | Content-Type: text/html |
| Details | This is required for POST and PUT commands associated with uploading objects and granting permissions; however, this command can alternatively be included in the body of the request instead of as a header (for more information, seeObjects: insert). When making the initial request of aresumable upload that also includes metadata, use the Content-Type header to specify the metadata's data type. For additional details, see thespecification. |
Date
The date and time of the request or response.
| Valid Values | A date and time represented in conventional HTTP format (see thespecification). |
| Example | Date: Wed, 16 Jun 2010 11:11:11 GMT |
| Details | For information about HTTP date formats, see thespecification. |
ETag
A response header that contains the entity tag of the object being accessed.
| Valid Values | A string of characters enclosed by quotes. For more information, seeObject metadata. |
| Example |
|
| Details | See thespecification. |
Expires
A response header indicating the time after which the response is considered stale.
| Valid Values | A date and time represented in conventional HTTP format (see thespecification). |
| Example | Expires: Tue, 22 Jan 2013 18:56:00 GMT |
| Details | See thespecification. |
If-Match
A request header that specifies an entity tag (ETag).
| Valid Values | A valid entity tag. |
| Example | If-Match: "881f7881ac1bc144a2672e45babb8839" |
| Details | This header is currently supported for For additional details, see thespecification. |
If-None-Match
A request header that specifies an entity tag (ETag).
| Valid Values | A valid entity tag. |
| Example | If-None-Match: "881f7881ac1bc144a2672e45babb8839" |
| Details | This header is currently supported for For additional details, see thespecification. |
Location
A response header providing a URI.
| Valid Values | Any valid URI. |
| Example | Location: https://storage.googleapis.com/upload/storage/v1/b/example-bucket/o?uploadType=resumable&... |
| Details | The
For additional details, see thespecification. |
Range
A request header indicating the range of bytes that you want returned, and aresponse header indicating the range of bytes that have been uploaded to theCloud Storage system.
| Valid Values | A contiguous range of bytes. |
| Examples | Range: bytes=0-1999 (first 2000 bytes)Range: bytes=-2000 (last 2000 bytes)Range: bytes=2000- (from byte 2000 to end of file) |
| Details | When included as a header in a request for object data, only the specified range of bytes for the object gets returned, which is useful when downloading an object in parallel requests or when resuming an interrupted download. Multiple byte ranges in a single request are not accepted, and incertain circumstances the When returned as part of a response associated with a resumable upload, Byte ranges are inclusive. For example, |
Extension (custom) HTTP headers
X-Goog-Allowed-Resources
A request header that restricts the resources the request is allowed to act on.
| Valid Values | AnRFC 4648 Base64-encoded string of theorganization restriction definition. |
| Example | X-Goog-Allowed-Resources: ewogInJlc291cmNlcyI6IFsib3JnYW5pemF0aW9ucy8xMjM0NTY3ODkiLCAib3JnYW5pemF0aW9ucy8xMDExMTIxMzE0Il0sCiAib3B0aW9ucyI6ICJzdHJpY3QiCn0K |
| Details | This request header prevents a request from proceeding unless each resource in the request is within an organization specified by the header. For more information, seeIntroduction to organization restrictions. |
Transfer-Encoding
A request and response header that specifies if transfer-encoding had beenapplied to the message body.
| Valid Values | chunked |
| Example | Transfer-Encoding: chunked |
| Details | This header specifies if the message body of a request or response has been chunked. If it is, content is received or served in a series of chunks, with the final chunk having a length of zero. If you specify For more details about Transfer-Encodings, see thespecification. For more details about chunked transfer encoding, see thespecification. |
X-Goog-Content-Length-Range
APUT request header. When used, Cloud Storage only accepts the request if the size of the request's content is within the header's specified range.
| Valid Values | AMIN,MAX pair |
| Example | X-Goog-Content-Length-Range: 0,256 |
| Details | The values for content size are inclusive and given in bytes. If the size of the request's content is in the specified range, it is delivered as requested. If the size of the request's content is outside the specified range, the request fails and a400 Bad Request code is returned in the response. If theX-Goog-Content-Length-Range is used in a request other thanPUT, the header is silently ignored. |
X-Goog-Custom-Audit-KEY
A request header that specifiescustom information to include in audit logsgenerated by Cloud Audit Logs.
| Valid Values | A string of characters (1,200 maximum). |
| Examples |
|
| Details | The X-Goog-Custom-Audit-KEY header can be used in any JSON API request. TheKEY is a custom string that can contain up to 64 characters, including thex-goog-custom-audit- prefix. TheVALUE is a custom string that can contain up to 1,200 characters. |
X-Goog-Encryption-Algorithm
A request and response header that specifies the encryption algorithm to use.
| Valid Values | AES256 |
| Example | X-Goog-Encryption-Algorithm: AES256 |
| Details | This request and response header is used when you providecustomer-supplied encryption keys. When used specifically in a rewrite operation, this header applies to the destination object. |
X-Goog-Encryption-Key
A request header that specifies an encryption key.
| Valid Values | AnRFC 4648 Base64-encoded string of a valid AES-256 encryption key |
| Example | X-Goog-Encryption-Key: NwbyGGmcKAX4FxGpOERG2Ap33m5NVOgmXznSGTEvG0I= |
| Details | This request header is used when you providecustomer-supplied encryption keys. When used specifically in a rewrite operation, this header applies to the destination object. |
X-Goog-Encryption-Key-Sha256
A request and response header that specifies the SHA256 hash of the encryption key.
| Valid Values | AnRFC 4648 Base64-encoded string of a valid SHA256 hash for an encryption key |
| Example | X-Goog-Encryption-Key-Sha256: +eBzkZBt1Mj2CZx69L3c8yXoZB6DtRLlSvXMJB9JGIQ= |
| Details | This request header is used when you providecustomer-supplied encryption keys. When used specifically in a rewrite operation, this header applies to the destination object. |
X-Goog-Copy-Source-Encryption-Algorithm
A request and response header that specifies the encryption algorithm to use on the source object when performing a rewrite.
| Valid Values | AES256 |
| Example | X-Goog-Copy-Source-Encryption-Algorithm: AES256 |
| Details | This request and response header is used in rewrite operations when you providecustomer-supplied encryption keys. This header applies to the source object used in the rewrite. |
X-Goog-Copy-Source-Encryption-Key
A request header that specifies an encryption key to use to decrypt the source object when performing a rewrite.
| Valid Values | AnRFC 4648 Base64-encoded string of a valid AES-256 encryption key |
| Example | X-Goog-Copy-Source-Encryption-Key: NwbyGGmcKAX4FxGpOERG2Ap33m5NVOgmXznSGTEvG0I= |
| Details | This request header is used in rewrite operations when you providecustomer-supplied encryption keys. This header applies to the source object in the rewrite. |
X-Goog-Copy-Source-Encryption-Key-Sha256
A request and response header that specifies the SHA256 hash of the encryption key that is used to decrypt the source object when performing a rewrite.
| Valid Values | AnRFC 4648 Base64-encoded string of a valid SHA256 hash for an encryption key. |
| Example | X-Goog-Copy-Source-Encryption-Key-Sha256: +eBzkZBt1Mj2CZx69L3c8yXoZB6DtRLlSvXMJB9JGIQ= |
| Details | This request header is in rewrite operations when you providecustomer-supplied encryption keys. This header applies to the source object in the rewrite. |
X-Goog-Meta-KEY
A request header used to setcustom metadata in thefinal request of aresumableupload.
| Valid Values | Any valid header name and value, with a maximum combined size of 8 KiB. |
| Example | X-Goog-Meta-foo: bar |
| Details | TheX-Goog-Meta- header is an optional header in the final request of a resumable upload. TheKEY and the header's value are added to the custom metadata of the uploaded object. Any custom metadata set in theinitial request that uses the sameKEY string is overwritten using the value provided in theX-Goog-Meta- header. Keys specified using theX-Goog-Meta- header are always added to the object's metadata using lowercase characters because HTTP headers are case-insensitive. |
X-Goog-Stored-Content-Encoding
A response header that indicates the content encoding value stored as part oftheobject's metadata. This value is independent of anytranscodingthat might be performed by the server during individual requests for the object.
| Valid Values | The content-encoding specified in the stored object's metadata oridentity. |
| Example | X-Goog-Stored-Content-Encoding: gzip |
| Details | If the object has no stored metadata value forcontent-encoding, then the value of this header isidentity. |
X-Goog-Stored-Content-Length
A response header that indicates the content length (in bytes) of the object asstored in Cloud Storage, independent of any server-driven negotiation thatmight occur for individual requests for the object.
| Valid Values | Any byte value of zero or greater. |
| Example | X-Goog-Stored-Content-Length: 350 |
| Details | None |
X-Goog-User-Project
A request header that specifies a user project to bill for access charges associated with the request.
| Valid Values | TheProject ID for an existing Google Cloud project |
| Example | X-Goog-User-Project: my-project |
| Details | The project specified in the header is billed for charges associated with the request. This header is used, for example, when making requests to buckets that haveRequester Pays enabled. Generally, JSON requests that require a project ID should supply one in the request URL with the |
X-GUploader-UploadID
A response header returned for Cloud Storage requests.
| Valid Values | A string of characters. |
| Example | X-GUploader-UploadID: ADPycdvYczN-TgGGp1mvqlCLVKg2m0Cp9niWTV2kc8MLJG6W6Xw7aPMYj1YU8Pxskb5C9lUM8hVEtBG6DubMif3xhXkgTpfhpg |
| Details | The X-GUploader-UploadID header is a unique identifier provided in Cloud Storage responses. This value can be helpful when troubleshooting with Google Cloud support. |
X-HTTP-Method-Override
An alternative notation for sending PATCH commands.
| Valid Values | PATCH |
| Example | X-HTTP-Method-Override: PATCH |
| Details | The X-HTTP-Method-Override header can be sent with a POST command in order to make the command behave as a PATCH command. This is useful when your firewall does not allow explicit PATCH commands to be sent. |
X-Upload-Content-Length
A request header used in resumable uploads.
| Valid Values | Any value of 0 or greater. |
| Example | X-Upload-Content-Length: 2000000 |
| Details | The X-Upload-Content-Length header is used in the initial request of aresumable upload. It specifies the total size in bytes of the object to be uploaded. If the length is unknown at the time of the request, the header can be omitted. |
X-Upload-Content-Type
A request header used in resumable uploads.
| Valid Values | Any valid MIME type (see thespecification). |
| Example | X-Upload-Content-Type: image/jpeg |
| Details | The X-Upload-Content-Type header is used in the initial request of aresumable upload. It specifies the MIME media type of the data that will be transferred in the resumable upload. If a MIME type is not specified in metadata or through this header, the object is served asapplication/octet-stream. |
Standard Query Parameters
Query string parameters that can be used in any JSON API request are shown inthe table below. Note that not all parameters apply to all requests. Forexample, use of thefields parameter has no effect onDelete requests, sincethe response body is empty. Seespecific methods for additional querystring parameters.
In the examples of query parameters described in this section, the URIs are notshown but are assumed to be relative tohttps://storage.googleapis.com/storage/v1/PATH_TO_RESOURCE,with the exception of object uploads and batched requests. For more informationabout the URIs you should use when making requests to the JSON API, seeRequest endpoints.
All parameters are optional except where noted.
| Parameter | Meaning | Notes |
|---|---|---|
alt | Data format for the response. |
|
callback | Callback function. |
|
fields | Selector specifying a subset of fields to include in the response. td> |
|
prettyPrint | Returns response with indentations and line breaks. |
|
quotaUser | IP address of the end user for whom the API call is being made. |
|
userProject | The project to be billed for the request. |
|
What's next
- See an exampleJSON API request used to create a Cloud Storagebucket.
Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-12-17 UTC.