Skip to main content
GET
/
api
/
v1
/
spaces
/
{space_id}
Get Space
curl --request GET \
  --url https://api.example.com/api/v1/spaces/{space_id}

Get Space

Returns information about a specific space.

Authentication

Requires a valid user JWT token.

Path Parameters

space_id
string
required
UUID of the space. Use me to get your own space: GET /api/v1/spaces/me.

Example

# Get your own space
curl https://api.ama2.me/api/v1/spaces/me \
  -H "Authorization: Bearer YOUR_JWT_TOKEN"

# Get a specific space
curl https://api.ama2.me/api/v1/spaces/{space_id} \
  -H "Authorization: Bearer YOUR_JWT_TOKEN"