> ## 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 Campaign Title & ID

## Overview

This endpoint retrieves the titles and IDs of all campaigns in Toingg. It allows users to quickly access the basic identifiers of campaigns, which can be useful for selecting specific campaigns for further actions or analysis.

#### Example cURL Request

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


## OpenAPI

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

````