> For the complete documentation index, see [llms.txt](https://docs.nlx.ai/platform/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.nlx.ai/platform/developers/developers.md).

# Developers Home

<h2 align="center">NLX for Developers</h2>

<p align="center">Welcome to the NLX developer documentation<br>to build and consume natural language applications in code.</p>

<p align="center"></p>

### I am looking for...

<table data-view="cards"><thead><tr><th></th><th></th><th data-hidden data-card-target data-type="content-ref"></th><th data-hidden data-card-cover data-type="image">Cover image</th></tr></thead><tbody><tr><td><strong>Conversation SDK</strong></td><td>Pre-built, drop-in conversational UI for your website or mobile app.</td><td><a href="/pages/2cvEFA80fYZhuIyxuH39">/pages/2cvEFA80fYZhuIyxuH39</a></td><td><a href="/files/RidKNL3RL6a5izEqHbVj">/files/RidKNL3RL6a5izEqHbVj</a></td></tr><tr><td><strong>Platform SDK (Coming soon)</strong></td><td>Automate provisioning your NLX apps and resources.</td><td></td><td><a href="/files/hZh6FsJMU9Os93CDiU9Z">/files/hZh6FsJMU9Os93CDiU9Z</a></td></tr><tr><td><strong>Conversation API</strong></td><td>Integrate conversational AI into you custom app/backend</td><td><a href="/pages/DaBq62r9aEq7e9vK01iD">/pages/DaBq62r9aEq7e9vK01iD</a></td><td><a href="/files/ugsM1GDF1Jqg4IZRMR7D">/files/ugsM1GDF1Jqg4IZRMR7D</a></td></tr></tbody></table>

{% columns %}
{% column %}

### Get started in 5 minutes

Setting up your first NLX application should be the easiest part of getting started. With clear endpoints and copy-paste-ready examples you’ll be up and running in minutes.

No guesswork, no complexity. Make your first successful call, fast.

<a href="/pages/2cvEFA80fYZhuIyxuH39" class="button primary" data-icon="rocket-launch">Get started</a> <a href="/pages/p8TuVkDGCpiOdd5TRMzW" class="button secondary" data-icon="link-simple">API reference</a>
{% endcolumn %}

{% column %}
{% code title="index.js" overflow="wrap" %}

```javascript
import { create, React, html } from "https://unpkg.com/@nlxai/touchpoint-ui@1.2.1/lib/index.js?module";
      
const touchpoint = await create({
  config: {
    applicationUrl: "****",
    headers: {
      "nlx-api-key": "****"
    },
    languageCode: "en-US"
  },
  colorMode: "light",
  input: "voice",
  theme: {
    fontFamily: "'Neue Haas Grotesk', sans-serif",
    accent:"#0040FF"
  }
});
```

{% endcode %}
{% endcolumn %}
{% endcolumns %}

{% columns %}
{% column %}

<figure><img src="/files/ev1r12UOAl6BKBLxDKtF" alt=""><figcaption></figcaption></figure>
{% endcolumn %}

{% column %}

### Learn more about the platform

Read guides, watch tutorials, and learn more about working with the NLX platform and integrating it with your own stack.

<a href="/spaces/HCxYxhIU0Bqkjj942mGk" class="button primary" data-icon="book-open">Platform guide</a>&#x20;
{% endcolumn %}
{% endcolumns %}

<h2 align="center">Join the NLX community</h2>

<p align="center">Enroll in Learning Hub or check out our open source contributions.</p>

<table data-card-size="large" data-view="cards"><thead><tr><th></th><th></th><th></th><th></th><th data-hidden data-card-cover data-type="image">Cover image</th></tr></thead><tbody><tr><td><h4><i class="fa-discord">:discord:</i></h4></td><td><strong>Enroll in Learning Hub</strong></td><td>Learn at your pace with video lessons, guided practice, and a builder community + earn a free LinkedIn certificate</td><td><a href="https://learning.nlx.ai/" class="button secondary">Enroll free</a></td><td><a href="/files/HMkHVjnbacZHBS74zVbi">/files/HMkHVjnbacZHBS74zVbi</a></td></tr><tr><td><h4><i class="fa-github">:github:</i></h4></td><td><strong>Follow us on GitHub</strong></td><td>Meet us on GitHub to find our open source contributions, including Touchpoint, the future of conversational interfaces</td><td><a href="https://github.com/nlxai" class="button secondary">Follow us</a></td><td><a href="https://images.unsplash.com/photo-1618401479427-c8ef9465fbe1?crop=entropy&#x26;cs=srgb&#x26;fm=jpg&#x26;ixid=M3wxOTcwMjR8MHwxfHNlYXJjaHwzfHxnaXRodWJ8ZW58MHx8fHwxNzYzODQzNDc3fDA&#x26;ixlib=rb-4.1.0&#x26;q=85">https://images.unsplash.com/photo-1618401479427-c8ef9465fbe1?crop=entropy&#x26;cs=srgb&#x26;fm=jpg&#x26;ixid=M3wxOTcwMjR8MHwxfHNlYXJjaHwzfHxnaXRodWJ8ZW58MHx8fHwxNzYzODQzNDc3fDA&#x26;ixlib=rb-4.1.0&#x26;q=85</a></td></tr></tbody></table>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.nlx.ai/platform/developers/developers.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
