Skip to main content
POST
/
v1
/
references
Create reference
curl --request POST \
  --url https://api.vidjutsu.ai/v1/references \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "url": "<string>",
  "platform": "<string>",
  "notes": "<string>",
  "tags": [
    {
      "key": "<string>",
      "value": "<string>"
    }
  ],
  "metadata": "<unknown>"
}
'
{
  "id": "<string>",
  "status": "active",
  "creditsCharged": 0
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
url
string
required
platform
string
notes
string
tags
object[]
metadata
any

Response

201 - application/json

The request has succeeded and a new resource has been created as a result.

id
string
required
status
enum<string>
required
Available options:
active
creditsCharged
enum<number>
required
Available options:
0