GET
/
publications
curl --request GET \
  --url https://app.qualitee.io/api/publications \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "uuid": "<string>",
      "site": {
        "uuid": "<string>",
        "name": "<string>",
        "url": "<string>",
        "cms": "none",
        "created_at": "<string>",
        "updated_at": "<string>",
        "wordpress": {
          "status": "<string>",
          "wordpress_version": "<string>",
          "plugin_version": "<string>",
          "authors": {
            "0": "<string>"
          },
          "categories": {
            "0": "<string>"
          }
        }
      },
      "analysis": {
        "uuid": "<string>",
        "type": "ai-detection",
        "details": {},
        "status": "pending",
        "price": 123,
        "created_at": "<string>",
        "updated_at": "<string>"
      },
      "author": 123,
      "category": 123,
      "url": "<string>",
      "planified_at": "<string>",
      "published_at": "<string>",
      "created_at": "<string>",
      "updated_at": "<string>"
    }
  ],
  "meta": {
    "current_page": 123,
    "from": 123,
    "last_page": 123,
    "per_page": 123,
    "to": 123,
    "total": 123
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

per_page
integer

Le nombre de résultats à renvoyer par pages

page
integer

Le numéro de la page

filter[uuid]
string

Filtre par uuid

filter[status]
string

Filtre par statut

filter[site]
string

Filtre par uuid du site concerné

filter[cms]
string

Filtre par CMS

Response

200
application/json

Renvoie un fichier JSON contenant une liste de publications et de métadonnées.

The response is of type object.