> ## Documentation Index
> Fetch the complete documentation index at: https://x-preview-mintlify-f9d5aa0e.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Important Resources

> Essential resources for X Enterprise API customers, including onboarding guides, account managers, support contacts, status pages, and SDKs.

Bookmark these essential resources for X API development.

***

## Documentation

<CardGroup cols={2}>
  <Card title="API Reference" icon="code" href="/x-api/introduction">
    Complete endpoint documentation with parameters and examples.
  </Card>

  <Card title="Data Dictionary" icon="book" href="/x-api/fundamentals/data-dictionary">
    Object schemas for posts, users, media, and more.
  </Card>

  <Card title="Authentication" icon="key" href="/resources/fundamentals/authentication/overview">
    OAuth 1.0a and OAuth 2.0 implementation guides.
  </Card>

  <Card title="Rate Limits" icon="gauge-high" href="/x-api/fundamentals/rate-limits">
    Per-endpoint limits and best practices.
  </Card>
</CardGroup>

***

## Tools

| Tool                                                                                                                                         | Description                           |
| :------------------------------------------------------------------------------------------------------------------------------------------- | :------------------------------------ |
| [Developer Console](https://console.x.com)                                                                                                   | Manage apps, credentials, and billing |
| [Postman Collection](https://www.postman.com/xapidevelopers/x-api-public-workspace/collection/34902927-2efc5689-99c6-4ab6-8091-996f35c2fd80) | Interactive API testing               |
| [Python SDK](/xdks/python/overview)                                                                                                          | Official Python library               |
| [TypeScript SDK](/xdks/typescript/overview)                                                                                                  | Official TypeScript library           |
| [OpenAPI Spec](https://api.x.com/2/openapi.json)                                                                                             | Machine-readable API specification    |

***

## Learning

<CardGroup cols={2}>
  <Card title="Tutorials" icon="graduation-cap" href="/tutorials">
    Step-by-step guides for common use cases.
  </Card>

  <Card title="Sample Code" icon="github" href="https://github.com/xdevplatform">
    Example apps and code samples.
  </Card>

  <Card title="What to Build" icon="lightbulb" href="/x-api/what-to-build">
    Ideas and inspiration for projects.
  </Card>

  <Card title="Migration Guide" icon="route" href="/x-api/migrate/overview">
    Upgrade from v1.1 to v2.
  </Card>
</CardGroup>

***

## Community and support

<CardGroup cols={2}>
  <Card title="Developer Forum" icon="comments" href="https://devcommunity.x.com">
    Ask questions and share solutions with the community.
  </Card>

  <Card title="Support Hub" icon="circle-question" href="https://developer.x.com/en/support">
    FAQs, troubleshooting, and contact options.
  </Card>

  <Card title="@XDevelopers" icon="x-twitter" href="https://x.com/XDevelopers">
    Official updates and announcements.
  </Card>

  <Card title="@API" icon="x-twitter" href="https://x.com/api">
    API-specific news and tips.
  </Card>
</CardGroup>

***

## Stay updated

| Resource                                                             | What you'll get                      |
| :------------------------------------------------------------------- | :----------------------------------- |
| [Changelog](/changelog)                                              | All platform changes and updates     |
| [Newsletter](/newsletter)                                            | Monthly roundup of news and features |
| [Forum Announcements](https://devcommunity.x.com/c/announcements/22) | Important platform notices           |
| [API Status](/status)                                                | Real-time service availability       |

<Tip>
  Follow [@XDevelopers](https://x.com/XDevelopers) and turn on notifications to catch breaking changes and new features.
</Tip>

***

## Quick reference

### Response structure

All v2 responses follow this structure:

```json theme={null}
{
  "data": { ... },      // Primary object(s)
  "includes": { ... },  // Expanded objects (if requested)
  "meta": { ... },      // Pagination info
  "errors": [ ... ]     // Partial errors (if any)
}
```

### Common parameters

| Parameter          | Use                          |
| :----------------- | :--------------------------- |
| `tweet.fields`     | Request specific post fields |
| `user.fields`      | Request specific user fields |
| `expansions`       | Include related objects      |
| `max_results`      | Limit results per page       |
| `pagination_token` | Get next/previous page       |

### Authentication methods

| Method       | Use case                                |
| :----------- | :-------------------------------------- |
| Bearer Token | Read-only public data                   |
| OAuth 2.0    | User actions with fine-grained scopes   |
| OAuth 1.0a   | User actions (legacy, full permissions) |

[Full authentication guide →](/resources/fundamentals/authentication/overview)
