TrainFog Developers
Posts

Elenca tutti i post

Ottieni l'elenco di tutti i post. Supporta filtri, termine di ricerca (topic, titolo dell'artefatto, corpo dell'artefatto) e tipo.

GET
/posts
AuthorizationBearer <token>

In: header

Query Parameters

search?string

Termine di ricerca per topic del post, titoli o contenuti degli artefatti (usa regex).

type?string

Filtra per tipo di post.

Response Body

application/json

application/json

curl -X GET "https://api.trainfog.com/developers/v1.0/posts"
{
  "count": 10,
  "data": [
    {
      "id": "688874b1a08a60001dd72e1d",
      "product": "some-product-id",
      "topic": "How to use the Trainfog API",
      "type": "blog",
      "artifacts": [
        {
          "title": "API Guide: Getting Started",
          "body": "This is the generated blog post body..."
        }
      ],
      "createdAt": "2025-07-29T07:13:53.474Z",
      "updatedAt": "2025-07-29T07:13:53.474Z"
    }
  ]
}
{
  "error": "Unauthorized"
}