---
title: "Threads: posztolási szabályok és beállítások | Posty dokumentáció"
description: "Mit fogad el a Threads csatorna a Postyban: média, korlátok, kötelező mezők, és a settings objektum mezői az API-hoz."
canonical: https://posty.hu/en/docs/platforms/threads
source: https://posty.hu/en/docs/platforms/threads.md
---

Platformok

# Threads: posztolási szabályok és beállítások

Mit fogad el a Threads csatorna a Postyban: média, korlátok, kötelező mezők, és a settings objektum mezői az API-hoz.

## Basics

Platform

Threads

Character limit

500 (the connected account may have a different limit)

Media

Image or video, optional.

settings.\_\_type

`threads`

Required fields

No required settings fields.

Platform page

[Threads scheduler](https://posty.hu/en/channels/threads)

## Post types

The same channel accepts more than one kind of post, and each kind has different requirements. The table shows what you need for each.

| Type | Media | Notes |
| --- | --- | --- |
| Text | none | No extra notes. |
| Image | 1 or more images | No extra notes. |
| Thread | each part has its own | Same as on X: the remaining items in the value array are attached below it. |

## Rules

- Threads has no platform-specific settings. The \_\_type field is enough in the settings object.
- You write a thread as extra parts of the post, the same way as on X.

## Settings fields

This platform has no settings fields

The `settings` object only needs the `__type` field. The editor does not show a separate settings section for this channel.

## Examples

Each example is one item in the `POST /public/v1/posts` request's `posts` array. The envelope around it is always this:

```
{
  "type": "schedule",
  "date": "2026-09-15T09:00:00.000Z",
  "shortLink": false,
  "posts": [ /* az alábbi elem */ ]
}
```

Kód másolása

### Text post

The settings object only needs the \_\_type field.

```
{
  "integration": { "id": "<threads-csatorna>" },
  "value": [{ "content": "<p>Rövid gondolat a hétről.</p>", "image": [] }],
  "settings": { "__type": "threads" }
}
```

Kód másolása

### Thread

```
{
  "integration": { "id": "<threads-csatorna>" },
  "value": [
    { "content": "<p>Első rész.</p>", "image": [] },
    { "content": "<p>Második rész.</p>", "image": [], "delay": 1 }
  ],
  "settings": { "__type": "threads" }
}
```

Kód másolása

The channel ID comes from the [channel list](https://posty.hu/en/docs/api/endpoints/csatornak), and the `path` values for images and videos from [media upload](https://posty.hu/en/docs/api/endpoints/media-feltoltes). The exact schema for the connected account comes from the [settings schema endpoint](https://posty.hu/en/docs/api/endpoints/csatorna-sema). From the command line, the same thing is the `--settings` flag. See the [CLI examples](https://posty.hu/en/docs/cli/examples).

Documentation pages

Is something missing from this page? Email [norbert@posty.hu](mailto:norbert@posty.hu) or use the form on the [Help](https://posty.hu/en/help) page.
