---
title: "Status and discovery: GET /status | Posty dokumentáció"
description: "Állapot és felderítés. Az egyetlen útvonal, amely kulcs nélkül is válaszol."
canonical: https://posty.hu/en/docs/api/endpoints/allapot
source: https://posty.hu/en/docs/api/endpoints/allapot.md
---

Basics

# Status and discovery: GET /status

Állapot és felderítés. Az egyetlen útvonal, amely kulcs nélkül is válaszol.

## Path

Method and path

GEThttps://api.posty.hu/public/v1/status

Authorization

No scope required.

operationId

`getStatus`

The only path that responds without authentication. It returns the API version, the server's exact time in UTC, and absolute URLs for every document meant for machines: the OpenAPI description, the OAuth metadata, and the MCP endpoint.

It does not return workspace data, and it takes no parameters. This is the fastest way for an agent to check that it can reach us, and where to look for the rest.

## Request

```
curl https://api.posty.hu/public/v1/status
```

Kód másolása

## Response

Example response structure. The [OpenAPI document](https://posty.hu/openapi.json) contains the authoritative schema for each field.

```
{
  "name": "Posty API",
  "status": "ok",
  "version": "v1",
  "time": "2026-08-31T14:07:21.689Z",
  "documentation": {
    "developers": "https://posty.hu/fejlesztok",
    "openapi": "https://api.posty.hu/docs-json",
    "openapiMirror": "https://posty.hu/openapi.json",
    "swaggerUi": "https://api.posty.hu/docs",
    "llms": "https://posty.hu/llms.txt"
  },
  "authentication": {
    "apiKey": { "header": "Authorization", "format": "psty_...", "selfServe": true },
    "oauth2": { "resource": "https://api.posty.hu/public/v1", "...": "..." },
    "signUp": "https://posty.hu/regisztracio",
    "salesContactRequired": false
  },
  "mcp": { "endpoint": "https://api.posty.hu/mcp-oauth", "transport": "streamable-http" },
  "scopes": {
    "rest": ["posts:read", "posts:draft", "posts:publish",
             "channels:read", "channels:write", "media:write", "analytics:read"],
    "mcp": ["mcp:read", "mcp:write"]
  },
  "rateLimits": { "headers": ["RateLimit-Limit", "RateLimit-Remaining",
                              "RateLimit-Reset", "RateLimit-Policy"] },
  "versioning": { "scheme": "url-path", "current": "v1" }
}
```

Kód másolása

## Important

- This response is the source of the server's time. If you schedule, use this, not your own machine's clock.

## Related

- [Authentication](https://posty.hu/en/docs/api/authentication): API key and scopes.
- [Errors and limits](https://posty.hu/en/docs/api/errors): error responses and rate limits.
- [All endpoints](https://posty.hu/en/docs/api/endpoints): full list.

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.
