Skip to main content
GET
/
v1
/
workspaces
/
{id}
Get workspace details
curl --request GET \
  --url https://api.example.com/v1/workspaces/{id} \
  --header 'Authorization: Bearer <token>'
{
  "countryCode": "<string>",
  "countryName": "<string>",
  "createdAt": "<string>",
  "id": "<string>",
  "languageCode": "<string>",
  "name": "<string>",
  "websiteUrl": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://developers.semji.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key starting with sk_. Generate one in Settings > API Keys.

Path Parameters

id
string
required

Workspace ID.

Response

200 - application/json

Default Response

countryCode
string
required

Country code (ISO 3166-1 alpha-2).

countryName
string
required

Human-readable country name.

createdAt
string
required

ISO 8601 creation date.

id
string
required

Unique identifier of the workspace.

languageCode
string
required

Language code (ISO 639-1).

name
string
required

Name of the workspace.

websiteUrl
string
required

Root URL of the website tracked by this workspace.