BizKitHub
DocsAPI ReferencePost/api/v1/post/comment/create
postPostPublic API v1

/api/v1/post/comment/create

Create a new post comment. Always resolves contact via identityId and stores GEO IP. Runs spam detection before insert; spam comments are NOT stored.

postpostApiV1PostCommentCreate

Parameters

1 query · JSON body

Query parameters

· 1
apiKeystringRequired

Your BizKitHub API key (passed as GET parameter).

Key format: A 32-character string matching: ^(PROD|DEV_|ROOT)[A-Za-z0-9]{28}$
Prefixes: PROD (production key), DEV_ (individual developer), ROOT (system key with no limits). Learn more

ExamplePRODPGrFxpGEtrOZfuWhnoJohUYBXuOE

Request body

application/json
postIdstringRequired

Post public id (content__post.external_id).

Example6IU2SWgP76FO2UXw
identityIdstringRequired

Logged user identity (from your frontend cookies). Learn more

ExampleZ9CPkS2o3UV163VQn5OUv0T8BQi8Fvdg
contentstringRequired

Plain text comment content.

Length: 15000
ExampleSuper článek, díky!
parentIdstringOptional

Comment external ID (content__post_comment.external_id), 16-char string.

ExampleAbc1dEf2gHiJ3kL4
customerRealIpstringOptional

User IP address used for GEO/IP intelligence.
Accepted formats: IPv4 (e.g. 1.1.1.1), IPv6 (e.g. 2001:4860:4860::8888)
Normalization:

  • ::1, 0.0.0.0, localhost (or empty value) is normalized to 127.0.0.1
  • Invalid values are rejected (the API expects a valid IP string).

If provided, the system can resolve additional context (reverse DNS, geolocation, ASN, proxy/hosting flags) via our internal VikiTron GEO/IP resolver. Learn more

Examples1.1.1.12001:4860:4860::8888

Response schema

1 status code documented

200Success
object | object | object
One of 3:
Variant 1
success"true"Required
commentobjectRequired
idstringRequired

Comment external ID (content__post_comment.external_id), 16-char string.

ExampleAbc1dEf2gHiJ3kL4
parentIdstring | nullRequired
One of 2:
Variant 1
string

Comment external ID (content__post_comment.external_id), 16-char string.

ExampleAbc1dEf2gHiJ3kL4
Variant 2
null
contentstringRequired
insertedDateDate | string | string | numberRequired
One of 4:
Variant 1
Date
Variant 2
stringdate-time
Variant 3
stringdate
Variant 4
number
deletedDateDate | string | string | number | nullRequired
One of 2:
Variant 1
Date | string | string | number
One of 4:
Variant 1
Date
Variant 2
stringdate-time
Variant 3
stringdate
Variant 4
number
Variant 2
null
authorobjectRequired
namestringRequired
profileSlugstringRequired
usingSubscriptionServicebooleanOptional

True if the author is using a subscription service (has active subscription).

isMinebooleanOptional

True if identityId belongs to the comment author.

Variant 2
success"false"Required
isSpam"true"Required
reasonstring | nullRequired
One of 2:
Variant 1
string
Variant 2
null
Variant 3
state"error"Required
messagestringRequired
code"200"Required
hintstring | nullRequired
One of 2:
Variant 1
string
Variant 2
null

Response example

application/json
{
  "success": true,
  "comment": {
    "id": "Abc1dEf2gHiJ3kL4",
    "content": "example_content",
    "author": {
      "name": "example_name",
      "profileSlug": "example_profileSlug"
    },
    "usingSubscriptionService": false,
    "isMine": false
  }
}

Request example

POST /api/v1/post/comment/create

post
curl -X POST "https://api.bizkithub.com/api/v1/post/comment/create?apiKey=PRODPGrFxpGEtrOZfuWhnoJohUYBXuOE" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
  "postId": "6IU2SWgP76FO2UXw",
  "identityId": "Z9CPkS2o3UV163VQn5OUv0T8BQi8Fvdg",
  "content": "Super článek, díky!",
  "parentId": "Abc1dEf2gHiJ3kL4",
  "customerRealIp": "1.1.1.1"
}'

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key