Skip to main content
GET
/
certifications
/
api
/
v1
/
certification-bodies
/
{id}
Get certification body
curl --request GET \
  --url https://www.closient.com/certifications/api/v1/certification-bodies/{id} \
  --header 'X-API-Key: <api-key>'
{
  "id": "<string>",
  "name": "<string>",
  "website": "",
  "description": "",
  "logo_url": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.closient.com/llms.txt

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

Authorizations

X-API-Key
string
header
required

Path Parameters

id
string<shortuuid>
required

URL-safe 22-character shortuuid encoding of the row's UUID. Preferred over the raw UUID id for human-shareable URLs and log lines.

Required string length: 22
Pattern: ^[23456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]{22}$

Response

OK

A certification-issuing organization (e.g. Oregon Tilth, MSC, FSC).

Mirrors :class:apps.certifications.models.CertificationBody. Returned by GET /certification-bodies and GET /certification-bodies/{id}.

id
string<shortuuid>
required

URL-safe 22-character shortuuid encoding of the row's UUID primary key. Stable across the row's lifetime; suitable for sharing in URLs, log lines, and external SDK clients. Accepted on input as either the shortuuid form or the canonical UUID form (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx).

Required string length: 22
Pattern: ^[23456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]{22}$
name
string
required

Public display name of the certification body (e.g. Oregon Tilth).

Maximum string length: 255
website
string
default:""

Canonical website of the body. Empty string when not known. When present, always an absolute https:// URL.

description
string
default:""

Free-text summary of what the body certifies. May be empty.

logo_url
string | null

Absolute URL of the body's stored logo image. null when no logo has been uploaded. Sized variants (AVIF/WEBP at 150x150) are available server-side but not exposed here.