Method: documents.analyzeSyntax

Analyzes the syntax of the text and provides sentence boundaries and tokenization along with part of speech tags, dependency trees, and other properties.

HTTP request

POST https://language.googleapis.com/v1beta2/documents:analyzeSyntax

The URL uses gRPC Transcoding syntax.

Request body

The request body contains data with the following structure:

JSON representation
{
  "document": {
    object (Document)
  },
  "encodingType": enum (EncodingType)
}
Fields
document

object (Document)

Required. Input document.

encodingType

enum (EncodingType)

The encoding type used by the API to calculate offsets.

Response body

The syntax analysis response message.

If successful, the response body contains data with the following structure:

JSON representation
{
  "sentences": [
    {
      object (Sentence)
    }
  ],
  "tokens": [
    {
      object (Token)
    }
  ],
  "language": string
}
Fields
sentences[]

object (Sentence)

Sentences in the input document.

tokens[]

object (Token)

Tokens, along with their syntactic information, in the input document.

language

string

The language of the text, which will be the same as the language specified in the request or, if not specified, the automatically-detected language. See Document.language field for more details.

Authorization scopes

Requires one of the following OAuth scopes:

  • https://www.googleapis.com/auth/cloud-language
  • https://www.googleapis.com/auth/cloud-platform

For more information, see the Authentication Overview.