# Response Attributes

The authentication endpoint returns a structured OAuth token response used to authorize all subsequent Drizz API calls. These attributes define the bearer token, its type, and its validity window. Clients must store the token securely and refresh it upon expiry to maintain uninterrupted CI/CD or automation workflows.

| Attribute     | Data Type | Description                 | Example       |
| ------------- | --------- | --------------------------- | ------------- |
| access\_token | string    | Bearer token for API access | eyJhbGciOi... |
| token\_type   | string    | Token type                  | Bearer        |
| expires\_in   | number    | Token expiry (seconds)      | 86400         |


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.drizz.dev/drizz-api-integration/authentication/response-attributes.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
