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

# Tellscope API Documentation

> Integrate customer feedback data into your applications

## Welcome to Tellscope

Tellscope is a customer feedback analytics platform that aggregates, analyzes, and helps you act on feedback from multiple sources. Our API allows you to programmatically access your feedback data, contacts, and accounts.

<CardGroup cols={2}>
  <Card title="Quickstart Tutorial" icon="rocket" href="/quickstart">
    Build your first integration in 10 minutes
  </Card>

  <Card title="API Reference" icon="code" href="/api-reference/introduction">
    Explore all available endpoints
  </Card>
</CardGroup>

## What can you do with the API?

<CardGroup cols={2}>
  <Card title="Feedback" icon="comments">
    Create, read, and delete customer feedback programmatically
  </Card>

  <Card title="Contacts" icon="users">
    Access your customer contact database
  </Card>

  <Card title="Accounts" icon="building">
    Retrieve account and company information
  </Card>

  <Card title="Integrate" icon="plug">
    Build custom integrations with your tools
  </Card>
</CardGroup>

## Authentication

All API requests require an API key. You can generate and manage your API key from the [Tellscope Dashboard](https://app.tellscope.io/settings).

```graphql theme={null}
query {
  feedbackItems(apiKey: "tellscp_sk_...") {
    items {
      id
      title
    }
  }
}
```

<Note>
  Keep your API key secure. Never expose it in client-side code or public repositories.
</Note>
