Skip to main content
GET
/
project
/
{id}
cURL
curl --request GET \
  --url http://loglybase.com/api/project/{id} \
  --header 'X-API-KEY: <api-key>'
{
  "id": 123,
  "code": "<string>",
  "slug": "<string>",
  "name": "<string>",
  "description": "<string>",
  "logo": "<string>",
  "customDomain": "<string>",
  "theme": "<string>",
  "primaryColor": "<string>",
  "fontFamily": "<string>",
  "fontSize": "<string>",
  "customCss": "<string>",
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z"
}

Authorizations

X-API-KEY
string
header
required

Path Parameters

id
string
required

Unique code of project to get

Response

The project response

id
integer<int64>

Unique identifier of the project

code
string

Internal project code

slug
string

Public slug used in subdomain URL

name
string

Display name of the project

description
string

Short description shown on the changelog page

URL of the project logo

customDomain
string

Custom domain connected to the project

theme
string

Visual theme of the changelog page (LIGHT, DARK, or SYSTEM)

primaryColor
string

Hex color used for highlights and accents

fontFamily
string

Font used on the changelog page

fontSize
string

Base font size used for content (SMALL, MEDIUM, LARGE)

customCss
string

Custom CSS applied to the public page

createdAt
string<date-time>

Timestamp when the project was created

updatedAt
string<date-time>

Timestamp when the project was last updated