POST
/
api
/
links
/
link_with_params
/
curl --request POST \
  --url https://api.creatify.ai/api/links/link_with_params/ \
  --header 'Content-Type: application/json' \
  --header 'X-API-ID: <api-key>' \
  --header 'X-API-KEY: <api-key>' \
  --data '{
  "url": "<string>",
  "title": "<string>",
  "description": "<string>",
  "image_urls": [
    "<string>"
  ],
  "video_urls": [
    "<string>"
  ],
  "reviews": "<any>",
  "logo_url": "<string>"
}'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "url": "<string>",
  "title": "<string>",
  "description": "<string>",
  "image_urls": [
    "<string>"
  ],
  "video_urls": [
    "<string>"
  ],
  "reviews": "<any>",
  "logo_url": "<string>"
}

Authorizations

X-API-ID
string
headerrequired

API ID, from your settings page.

X-API-KEY
string
headerrequired

API Key, from your settings page.

Body

url
string | null
title
string | null
description
string | null
image_urls
string[]
video_urls
string[]
reviews
any | null
logo_url
string | null

Response

200 - application/json
id
string
required
url
string | null
title
string | null
description
string | null
image_urls
string[]
video_urls
string[]
reviews
any | null
logo_url
string | null