> ## Documentation Index
> Fetch the complete documentation index at: https://docs.toingg.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Monday info

## Overview

The "Get Monday Info" endpoint allows users to retrieve stored Monday.com credentials from their Toingg account. By sending a GET request to the `/get_monday_info` endpoint, users can access the API key and other relevant details necessary for integration with Monday.com. This functionality is crucial for ensuring seamless interaction between Toingg and Monday.com, enabling users to automate workflows and synchronize data effectively. The endpoint supports retrieval of credentials to enhance productivity and operational efficiency.

#### Example cURL Request

```bash theme={null}
curl -X 'GET' \
'https://api.toingg.com/api/v3/get_monday_info' \
-H 'accept: application/json' \
 -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
```


## OpenAPI

````yaml GET /get_monday_info
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers:
  - url: https://api.toingg.com/api/v3
security: []
paths:
  /get_monday_info:
    get:
      tags:
        - Monday Integration
      summary: Get Monday Info
      operationId: get_monday_info_get_monday_info_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - OAuth2PasswordBearer: []
components:
  securitySchemes:
    OAuth2PasswordBearer:
      type: oauth2
      flows:
        password:
          scopes: {}
          tokenUrl: login

````