# Create from a Topic Prompt

Let the AI research the subject for you by sending a `topic` without additional resources. Include `text` to define the angle.

```bash
curl -X POST "https://api.autocontentapi.com/content/Create" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "outputType": "audio",
    "topic": "How remote teams can stay productive",
    "text": "Focus on tactics for hybrid startups."
  }'
```

**Tips**

* Add `duration`, `style`, or `language` fields to nail the format.
* Pair with custom instructions that list the exact talking points you expect.

## Try it in code

* [C#](/code-samples/podcasts/csharp/from-topic.md)
* [Node.js](/code-samples/podcasts/nodejs/from-topic.md)
* [Java](/code-samples/podcasts/java/from-topic.md)
* [PHP](/code-samples/podcasts/php/from-topic.md)
* [Python](/code-samples/podcasts/python/from-topic.md)


---

# Agent Instructions: 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:

```
GET https://docs.autocontentapi.com/quick-start/podcasts/from-topic.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
