---
title: "Check connection: GET /is-connected | Posty Docs"
description: "Checks whether the key points to a valid workspace."
canonical: https://posty.hu/en/docs/api/endpoints/connection
source: https://posty.hu/en/docs/api/endpoints/connection.md
---

Basics

# Check connection: GET /is-connected

Checks whether the key points to a valid workspace.

## Path

Method and path

GEThttps://api.posty.hu/public/v1/is-connected

Authorization

No scope required.

operationId

`isConnected`

Tells you whether the credential you sent points at a valid workspace. Call this first after you create a key. If it works, authentication is fine, and every later error is about the request itself.

## Request

```
curl https://api.posty.hu/public/v1/is-connected \
  -H "Authorization: psty_your_key"
```

Copy Code

## Response

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

```
{ "connected": true }
```

Copy Code

## 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.
