Google Get API

Operations related to Get

Operations 16

GET /gmail/v1/users/{userId}/profile Google Get Profile
GET /gmail/v1/users/{userId}/messages/{id} Google Get Messages
GET /gmail/v1/users/{userId}/labels/{id} Google Get Labels
GET /gmail/v1/users/{userId}/threads/{id} Google Get Threads
GET /gmail/v1/users/{userId}/settings/imap Google GET IMAP
GET /gmail/v1/users/{userId}/settings/pop Google Get POP Settings
GET /gmail/v1/users/{userId}/settings/vacation Google Get Vacation Settings
GET /gmail/v1/users/{userId}/settings/language Google Get Language Settings
GET /gmail/v1/users/{userId}/settings/sendAs/{sendAsEmail}/smimeInfo/{id} Google Get Send As SMIME Info
GET /gmail/v1/users/{userId}/settings/sendAs/{sendAsEmail} Google Get Send As
GET /gmail/v1/users/{userId}/settings/sendAs Google Get Send As
GET /gmail/v1/users/{userId}/settings/cse/keypairs/{keyPairId} Google GET CSE Keypairs
GET /gmail/v1/users/{userId}/settings/cse/identities/{cseEmailAddress} Google GET CSE Idenetites
GET /gmail/v1/users/{userId}/settings/filters/{id} Google Get Filters
GET /v4/spreadsheets/{spreadsheetId}/values/{range} Google Get Values
GET /v4/spreadsheets/{spreadsheetId} Google Get Sheet

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/google-get-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

google-get-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Google Get API
  version: 1.0.0
  description: 'Operations tagged Get across 2 of this provider''s published API definitions: google-gmail-api-openapi.yml, google-sheets-api-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://gmail.googleapis.com
  description: Google Gmail API Server
- url: https://sheets.googleapis.com
  description: Google Sheets API Server
security:
- oauth2Auth: []
tags:
- name: Get
  description: Operations related to Get
paths:
  /gmail/v1/users/{userId}/profile:
    get:
      tags:
      - Get
      summary: Google Get Profile
      description: The Google Gmail API's Get Profile operation retrieves the current user's Gmail profile information by making a GET request to the endpoint /gmail/v1/users/{userId}/profile, where {userId} can be either the user's email address or the special value "me" to indicate the authenticated user. This operation returns basic profile details including the user's email address, the total number of messages in their mailbox, the total number of threads, and their history ID, which is useful for tracking changes to the mailbox over time. The response provides essential metadata about the Gmail account without accessing the actual content of emails, making it a lightweight way to verify account details and obtain summary statistics. This endpoint requires appropriate OAuth 2.0 authorization scopes, typically gmail.readonly or gmail.metadata, to access the user's profile information securely.
      parameters:
      - name: Accept
        in: header
        schema:
          type: string
        example: application/json
      - name: userId
        in: path
        schema:
          type: string
        required: true
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GmailUsersProfileGetResponse'
              examples:
                GmailUsersProfileGetResponseExample:
                  $ref: '#/components/examples/GmailUsersProfileGetResponseExample'
      x-api-evangelist-processing:
        ChooseTags: true
        WriteDescription: true
      x-microcks-operation:
        delay: 100
        dispatcher: FALLBACK
        dispatcherRules: GmailUsersProfileGetResponseExample
    servers:
    - url: https://gmail.googleapis.com
      description: Google Gmail API Server
  /gmail/v1/users/{userId}/messages/{id}:
    get:
      tags:
      - Get
      summary: Google Get Messages
      description: Gets the specified message.
      parameters:
      - name: Accept
        in: header
        schema:
          type: string
        example: application/json
      - name: userId
        in: path
        schema:
          type: string
        required: true
        description: '(Required) '
        example: incididunt labore i
      - name: id
        in: path
        schema:
          type: string
        required: true
        description: '(Required) '
        example: incididunt labore i
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GmailUsersMessagesGetResponse1'
              examples:
                GmailUsersMessagesGetResponse1Example:
                  $ref: '#/components/examples/GmailUsersMessagesGetResponse1Example'
      x-api-evangelist-processing:
        ChooseTags: true
      x-microcks-operation:
        delay: 100
        dispatcher: FALLBACK
        dispatcherRules: GmailUsersMessagesGetResponse1Example
    servers:
    - url: https://gmail.googleapis.com
      description: Google Gmail API Server
  /gmail/v1/users/{userId}/labels/{id}:
    get:
      tags:
      - Get
      summary: Google Get Labels
      description: Gets the specified label.
      parameters:
      - name: Accept
        in: header
        schema:
          type: string
        example: application/json
      - name: userId
        in: path
        schema:
          type: string
        required: true
        description: '(Required) '
        example: incididunt labore i
      - name: id
        in: path
        schema:
          type: string
        required: true
        description: '(Required) '
        example: incididunt labore i
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GmailUsersLabelsGetResponse1'
              examples:
                GmailUsersLabelsGetResponse1Example:
                  $ref: '#/components/examples/GmailUsersLabelsGetResponse1Example'
      x-api-evangelist-processing:
        ChooseTags: true
      x-microcks-operation:
        delay: 100
        dispatcher: FALLBACK
        dispatcherRules: GmailUsersLabelsGetResponse1Example
    servers:
    - url: https://gmail.googleapis.com
      description: Google Gmail API Server
  /gmail/v1/users/{userId}/threads/{id}:
    get:
      tags:
      - Get
      summary: Google Get Threads
      description: Gets the specified thread.
      parameters:
      - name: Accept
        in: header
        schema:
          type: string
        example: application/json
      - name: userId
        in: path
        schema:
          type: string
        required: true
        description: '(Required) '
        example: incididunt labore i
      - name: id
        in: path
        schema:
          type: string
        required: true
        description: '(Required) '
        example: incididunt labore i
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GmailUsersThreadsGetResponse'
              examples:
                GmailUsersThreadsGetResponseExample:
                  $ref: '#/components/examples/GmailUsersThreadsGetResponseExample'
      x-api-evangelist-processing:
        ChooseTags: true
      x-microcks-operation:
        delay: 100
        dispatcher: FALLBACK
        dispatcherRules: GmailUsersThreadsGetResponseExample
    servers:
    - url: https://gmail.googleapis.com
      description: Google Gmail API Server
  /gmail/v1/users/{userId}/settings/imap:
    get:
      tags:
      - Get
      summary: Google GET IMAP
      description: Gets IMAP settings.
      parameters:
      - name: Accept
        in: header
        schema:
          type: string
        example: application/json
      - name: userId
        in: path
        schema:
          type: string
        required: true
        description: '(Required) '
        example: incididunt labore i
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UsersSettingsImapGetResponse'
              examples:
                UsersSettingsImapGetResponseExample:
                  $ref: '#/components/examples/UsersSettingsImapGetResponseExample'
      x-api-evangelist-processing:
        ChooseTags: true
      x-microcks-operation:
        delay: 100
        dispatcher: FALLBACK
        dispatcherRules: UsersSettingsImapGetResponseExample
    servers:
    - url: https://gmail.googleapis.com
      description: Google Gmail API Server
  /gmail/v1/users/{userId}/settings/pop:
    get:
      tags:
      - Get
      summary: Google Get POP Settings
      description: Gets POP settings.
      parameters:
      - name: Accept
        in: header
        schema:
          type: string
        example: application/json
      - name: userId
        in: path
        schema:
          type: string
        required: true
        description: '(Required) '
        example: '{{userId}}'
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UsersSettingsPopGetResponse'
              examples:
                UsersSettingsPopGetResponseExample:
                  $ref: '#/components/examples/UsersSettingsPopGetResponseExample'
      x-api-evangelist-processing:
        ChooseTags: true
      x-microcks-operation:
        delay: 100
        dispatcher: FALLBACK
        dispatcherRules: UsersSettingsPopGetResponseExample
    servers:
    - url: https://gmail.googleapis.com
      description: Google Gmail API Server
  /gmail/v1/users/{userId}/settings/vacation:
    get:
      tags:
      - Get
      summary: Google Get Vacation Settings
      description: Gets vacation responder settings.
      parameters:
      - name: Accept
        in: header
        schema:
          type: string
        example: application/json
      - name: userId
        in: path
        schema:
          type: string
        required: true
        description: '(Required) '
        example: incididunt labore i
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UsersSettingsVacationGetResponse'
              examples:
                UsersSettingsVacationGetResponseExample:
                  $ref: '#/components/examples/UsersSettingsVacationGetResponseExample'
      x-api-evangelist-processing:
        ChooseTags: true
      x-microcks-operation:
        delay: 100
        dispatcher: FALLBACK
        dispatcherRules: UsersSettingsVacationGetResponseExample
    servers:
    - url: https://gmail.googleapis.com
      description: Google Gmail API Server
  /gmail/v1/users/{userId}/settings/language:
    get:
      tags:
      - Get
      summary: Google Get Language Settings
      description: Gets language settings.
      parameters:
      - name: Accept
        in: header
        schema:
          type: string
        example: application/json
      - name: userId
        in: path
        schema:
          type: string
        required: true
        description: '(Required) '
        example: incididunt labore i
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UsersSettingsLanguageGetResponse'
              examples:
                UsersSettingsLanguageGetResponseExample:
                  $ref: '#/components/examples/UsersSettingsLanguageGetResponseExample'
      x-api-evangelist-processing:
        ChooseTags: true
      x-microcks-operation:
        delay: 100
        dispatcher: FALLBACK
        dispatcherRules: UsersSettingsLanguageGetResponseExample
    servers:
    - url: https://gmail.googleapis.com
      description: Google Gmail API Server
  /gmail/v1/users/{userId}/settings/sendAs/{sendAsEmail}/smimeInfo/{id}:
    get:
      tags:
      - Get
      summary: Google Get Send As SMIME Info
      description: Gets the specified S/MIME config for the specified send-as alias.
      parameters:
      - name: Accept
        in: header
        schema:
          type: string
        example: application/json
      - name: userId
        in: path
        schema:
          type: string
        required: true
        description: '(Required) '
        example: incididunt labore i
      - name: sendAsEmail
        in: path
        schema:
          type: string
        required: true
        description: '(Required) '
        example: incididunt labore i
      - name: id
        in: path
        schema:
          type: string
        required: true
        description: '(Required) '
        example: incididunt labore i
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SettingsSendAsSmimeInfoGetResponse'
              examples:
                SettingsSendAsSmimeInfoGetResponseExample:
                  $ref: '#/components/examples/SettingsSendAsSmimeInfoGetResponseExample'
      x-api-evangelist-processing:
        ChooseTags: true
      x-microcks-operation:
        delay: 100
        dispatcher: FALLBACK
        dispatcherRules: SettingsSendAsSmimeInfoGetResponseExample
    servers:
    - url: https://gmail.googleapis.com
      description: Google Gmail API Server
  /gmail/v1/users/{userId}/settings/sendAs/{sendAsEmail}:
    get:
      tags:
      - Get
      summary: Google Get Send As
      description: Gets the specified send-as alias. Fails with an HTTP 404 error if the specified address is not a member of the collection.
      parameters:
      - name: Accept
        in: header
        schema:
          type: string
        example: application/json
      - name: userId
        in: path
        schema:
          type: string
        required: true
        description: '(Required) '
        example: incididunt labore i
      - name: sendAsEmail
        in: path
        schema:
          type: string
        required: true
        description: '(Required) '
        example: incididunt labore i
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UsersSettingsSendAsGetResponse'
              examples:
                UsersSettingsSendAsGetResponseExample:
                  $ref: '#/components/examples/UsersSettingsSendAsGetResponseExample'
      x-api-evangelist-processing:
        ChooseTags: true
      x-microcks-operation:
        delay: 100
        dispatcher: FALLBACK
        dispatcherRules: UsersSettingsSendAsGetResponseExample
    servers:
    - url: https://gmail.googleapis.com
      description: Google Gmail API Server
  /gmail/v1/users/{userId}/settings/sendAs:
    get:
      tags:
      - Get
      summary: Google Get Send As
      description: Lists the send-as aliases for the specified account. The result includes the primary send-as address associated with the account as well as any custom "from" aliases.
      parameters:
      - name: Accept
        in: header
        schema:
          type: string
        example: application/json
      - name: userId
        in: path
        schema:
          type: string
        required: true
        description: '(Required) '
        example: incididunt labore i
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UsersSettingsSendAsGetResponse1'
              examples:
                UsersSettingsSendAsGetResponse1Example:
                  $ref: '#/components/examples/UsersSettingsSendAsGetResponse1Example'
      x-api-evangelist-processing:
        ChooseTags: true
      x-microcks-operation:
        delay: 100
        dispatcher: FALLBACK
        dispatcherRules: UsersSettingsSendAsGetResponse1Example
    servers:
    - url: https://gmail.googleapis.com
      description: Google Gmail API Server
  /gmail/v1/users/{userId}/settings/cse/keypairs/{keyPairId}:
    get:
      tags:
      - Get
      summary: Google GET CSE Keypairs
      description: Retrieves an existing client-side encryption key pair.
      parameters:
      - name: Accept
        in: header
        schema:
          type: string
        example: application/json
      - name: userId
        in: path
        schema:
          type: string
        required: true
        description: '(Required) '
        example: incididunt labore i
      - name: keyPairId
        in: path
        schema:
          type: string
        required: true
        description: '(Required) '
        example: incididunt labore i
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SettingsCseKeypairsGetResponse'
              examples:
                SettingsCseKeypairsGetResponseExample:
                  $ref: '#/components/examples/SettingsCseKeypairsGetResponseExample'
      x-api-evangelist-processing:
        ChooseTags: true
      x-microcks-operation:
        delay: 100
        dispatcher: FALLBACK
        dispatcherRules: SettingsCseKeypairsGetResponseExample
    servers:
    - url: https://gmail.googleapis.com
      description: Google Gmail API Server
  /gmail/v1/users/{userId}/settings/cse/identities/{cseEmailAddress}:
    get:
      tags:
      - Get
      summary: Google GET CSE Idenetites
      description: Retrieves a client-side encryption identity configuration.
      parameters:
      - name: Accept
        in: header
        schema:
          type: string
        example: application/json
      - name: userId
        in: path
        schema:
          type: string
        required: true
        description: '(Required) '
        example: incididunt labore i
      - name: cseEmailAddress
        in: path
        schema:
          type: string
        required: true
        description: '(Required) '
        example: incididunt labore i
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SettingsCseIdentitiesGetResponse1'
              examples:
                SettingsCseIdentitiesGetResponse1Example:
                  $ref: '#/components/examples/SettingsCseIdentitiesGetResponse1Example'
      x-api-evangelist-processing:
        ChooseTags: true
      x-microcks-operation:
        delay: 100
        dispatcher: FALLBACK
        dispatcherRules: SettingsCseIdentitiesGetResponse1Example
    servers:
    - url: https://gmail.googleapis.com
      description: Google Gmail API Server
  /gmail/v1/users/{userId}/settings/filters/{id}:
    get:
      tags:
      - Get
      summary: Google Get Filters
      description: Gets a filter.
      parameters:
      - name: Accept
        in: header
        schema:
          type: string
        example: application/json
      - name: userId
        in: path
        schema:
          type: string
        required: true
        description: '(Required) '
        example: incididunt labore i
      - name: id
        in: path
        schema:
          type: string
        required: true
        description: '(Required) '
        example: incididunt labore i
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UsersSettingsFiltersGetResponse'
              examples:
                UsersSettingsFiltersGetResponseExample:
                  $ref: '#/components/examples/UsersSettingsFiltersGetResponseExample'
      x-api-evangelist-processing:
        ChooseTags: true
      x-microcks-operation:
        delay: 100
        dispatcher: FALLBACK
        dispatcherRules: UsersSettingsFiltersGetResponseExample
    servers:
    - url: https://gmail.googleapis.com
      description: Google Gmail API Server
  /v4/spreadsheets/{spreadsheetId}/values/{range}:
    get:
      tags:
      - Get
      summary: Google Get Values
      description: Returns a range of values from a spreadsheet. The caller must specify the spreadsheet ID and a range.
      security:
      - oauth2Auth: []
      parameters:
      - name: Accept
        in: header
        schema:
          type: string
        example: application/json
      - name: majorDimension
        in: query
        schema:
          type: string
        example: '{{majorDimension}}'
      - name: valueRenderOption
        in: query
        schema:
          type: string
        example: '{{valueRenderOption}}'
      - name: dateTimeRenderOption
        in: query
        schema:
          type: string
        example: '{{dateTimeRenderOption}}'
      - name: access_token
        in: query
        schema:
          type: string
        description: OAuth access token.
        example: '{{accessToken}}'
      - name: alt
        in: query
        schema:
          type: string
        description: Data format for response.
        example: '{{alt}}'
      - name: callback
        in: query
        schema:
          type: string
        description: JSONP
        example: '{{callback}}'
      - name: fields
        in: query
        schema:
          type: string
        description: Selector specifying which fields to include in a partial response.
        example: '{{fields}}'
      - name: key
        in: query
        schema:
          type: string
        description: API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
        example: '{{key}}'
      - name: oauth_token
        in: query
        schema:
          type: string
        description: OAuth 2.0 token for the current user.
        example: '{{oauthToken}}'
      - name: prettyPrint
        in: query
        schema:
          type: string
        description: Returns response with indentations and line breaks.
        example: '{{prettyPrint}}'
      - name: quotaUser
        in: query
        schema:
          type: string
        description: Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.
        example: '{{quotaUser}}'
      - name: upload_protocol
        in: query
        schema:
          type: string
        description: Upload protocol for media (e.g. "raw", "multipart").
        example: '{{uploadProtocol}}'
      - name: uploadType
        in: query
        schema:
          type: string
        description: Legacy upload protocol for media (e.g. "media", "multipart").
        example: '{{uploadType}}'
      - name: $.xgafv
        in: query
        schema:
          type: string
        description: V1 error format.
        example: '{{.Xgafv}}'
      - name: spreadsheetId
        in: path
        schema:
          type: string
        required: true
        description: '(Required) '
        example: '{{spreadsheetId}}'
      - name: range
        in: path
        schema:
          type: string
        required: true
        description: '(Required) '
        example: '{{range}}'
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SpreadsheetsValuesGetResponse'
              examples:
                SpreadsheetsValuesGetResponseExample:
                  $ref: '#/components/examples/SpreadsheetsValuesGetResponseExample'
      x-api-evangelist-processing:
        ChooseTags: true
      x-microcks-operation:
        delay: 100
        dispatcher: FALLBACK
        dispatcherRules: SpreadsheetsValuesGetResponseExample
    servers:
    - url: https://sheets.googleapis.com
      description: Google Sheets API Server
  /v4/spreadsheets/{spreadsheetId}:
    get:
      tags:
      - Get
      summary: Google Get Sheet
      description: 'Returns the spreadsheet at the given ID. The caller must specify the spreadsheet ID. By default, data within grids is not returned. You can include grid data in one of 2 ways: * Specify a [field mask](https://developers.google.com/sheets/api/guides/field-masks) listing your desired fields using the `fields` URL parameter in HTTP * Set the includeGridData URL parameter to true. If a field mask is set, the `includeGridData` parameter is ignored For large spreadsheets, as a best practice, retrieve only the specific spreadsheet fields that you want. To retrieve only subsets of spreadsheet data, use the ranges URL parameter. Ranges are specified using [A1 notation](/sheets/api/guides/concepts#cell). You can define a single cell (for example, `A1`) or multiple cells (for example, `A1:D5`). You can also get cells from other sheets within the same spreadsheet (for example, `Sheet2!A1:C4`) or retrieve multiple ranges at once (for example, `?ranges=A1:D5&ranges=Sheet2!A1:C4`). Limiting the range returns only the portions of the spreadsheet that intersect the requested ranges.'
      security:
      - oauth2Auth: []
      parameters:
      - name: Accept
        in: header
        schema:
          type: string
        example: application/json
      - name: spreadsheetId
        in: path
        schema:
          type: string
        required: true
        description: '(Required) '
        example: '{{spreadsheetId}}'
      responses:
        '200':
          description: OK
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SpreadsheetsGetResponse'
              examples:
                SpreadsheetsGetResponseExample:
                  $ref: '#/components/examples/SpreadsheetsGetResponseExample'
      x-api-evangelist-processing:
        ChooseTags: true
      x-microcks-operation:
        delay: 100
        dispatcher: FALLBACK
        dispatcherRules: SpreadsheetsGetResponseExample
    servers:
    - url: https://sheets.googleapis.com
      description: Google Sheets API Server
components:
  examples:
    SettingsCseKeypairsGetResponseExample:
      summary: Successful 200 response
      value:
        keyPairId: Lorem eiusmod
        pkcs7: ex incididunt
        pem: irure quis
        subjectEmailAddresses:
        - Excepteur Ut commodo aliquip
        - eu Lorem nulla
        enablementState: disabled
        disableTime: cill
        privateKeyMetadata:
        - privateKeyMetadataId: proident fugiat eu dolore
          kaclsKeyMetadata:
            kaclsUri: voluptate ipsum ad
            kaclsData: Duis laborum aute
          hardwareKeyMetadata:
            description: mollit la
        - privateKeyMetadataId: nulla ullamco
          kaclsKeyMetadata:
            kaclsUri: minim in
            kaclsData: sint eiusmod
          hardwareKeyMetadata:
            description: ut
    GmailUsersLabelsGetResponse1Example:
      summary: Successful 200 response
      value:
        id: nostrud officia pariatur
        name: esse nulla occaecat
        messageListVisibility: show
        labelListVisibility: labelShow
        type: system
        messagesTotal: -34033607
        messagesUnread: 96181517
        threadsTotal: 7293200
        threadsUnread: 86726755
        color:
          textColor: sunt fugiat ut voluptate
          backgroundColor: commodo est cupidatat in sed
    SettingsSendAsSmimeInfoGetResponseExample:
      summary: Successful 200 response
      value:
        id: id
        issuerCn: ipsum qui s
        isDefault: false
        expiration: dolore magna
        pem: 'cillum labore '
        pkcs12: in aute et
        encryptedKeyPassword: cillum ut
    GmailUsersProfileGetResponseExample:
      summary: Successful 200 response
      value:
        emailAddress: anim officia cillum
        messagesTotal: -17389993
        threadsTotal: -18322134
        historyId: velit deserunt commodo
    UsersSettingsSendAsGetResponseExample:
      summary: Successful 200 response
      value:
        sendAsEmail: ut nulla
        displayName: Excepteur
        replyToAddress: velit id culpa
        signature: officia quis adipisicing
        isPrimary: true
        isDefault: true
        treatAsAlias: false
        smtpMsa:
          host: in elit
          port: -34532702
          username: aliqua laborum aliquip do
          password: tempor dolor velit
          securityMode: securityModeUnspecified
        verificationStatus: pending
    UsersSettingsImapGetResponseExample:
      summary: Successful 200 response
      value:
        enabled: false
        autoExpunge: false
        expungeBehavior: deleteForever
        maxFolderSize: -49364914
    UsersSettingsPopGetResponseExample:
      summary: Successful 200 response
      value:
        accessWindow: fromNowOn
        disposition: dispositionUnspecified
    UsersSettingsVacationGetResponseExample:
      summary: Successful 200 response
      value:
        enableAutoReply: false
        responseSubject: ei
        responseBodyPlainText: veniam reprehe
        responseBodyHtml: id
        restrictToContacts: false
        restrictToDomain: true
        startTime: est mollit
        endTime: enim in aliqua Ut commodo
    SettingsCseIdentitiesGetResponse1Example:
      summary: Successful 200 response
      value:
        emailAddress: aliquip quis id
        primaryKeyPairId: in exercitation esse
        signAndEncryptKeyPairs:
          signingKeyPairId: est deserunt
          encryptionKeyPairId: elit nulla esse ut
    UsersSettingsFiltersGetResponseExample:
      summary: Successful 200 response
      value:
        id: in aute anim
        criteria:
          from: nulla adipisicing veniam et mollit
          to: veniam commodo
          subject: sit exercitation
          query: nulla cupidatat officia commodo laborum
          negatedQuery: exercitation laboris
          hasAttachment: true
          excludeChats: false
          size: -52983385
          sizeComparison: smaller
        action:
          addLabelIds:
          - nostrud laboris sed esse
          - et ad
          removeLabelIds:
          - Lorem consequat l
          - minim Excepteur
          forward: culpa do
    UsersSettingsSendAsGetResponse1Example:
      summary: Successful 200 response
      value:
        sendAs:
        - sendAsEmail: exercitation
          displayName: proident Duis
          replyToAddress: deserunt do ut id
          signature: tempor irure dolore qui dol
          isPrimary: false
          isDefault: true
          treatAsAlias: true
          smtpMsa:
            host: irure sit non
            port: -14344492
            username: ipsum ad non
            password: proident sunt eiusmod Lorem
            securityMode: starttls
          verificationStatus: accepted
        - sendAsEmail: commodo et exercitatio
          displayName: pariatur Ut sit deserunt quis
          replyToAddress: in consectetur qui aliqua
          signature: velit fug
          isPrimary: false
          isDefault: false
          treatAsAlias: false
          smtpMsa:
            host: occaecat laborum magna aute
            port: 42884741
            username: voluptate sit adipisicing
            password: incididunt ullamco
            securityMode: ssl
          verificationStatus: verificationStatusUnspecified
    UsersSettingsLanguageGetResponseExample:
      summary

# --- truncated at 32 KB (455 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/google/refs/heads/main/openapi/google-get-api-openapi.yml