Skip to main content
POST
/
api
/
v1
/
fingerprint
/
embed
Fingerprint Embed
curl --request POST \
  --url https://ca-factagora-search.kindsea-5b0dfb7c.eastus.azurecontainerapps.io/api/v1/fingerprint/embed \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "url": "<string>",
  "content_type": "news",
  "metadata": {
    "author_id": "<string>",
    "published_at": "2023-11-07T05:31:56Z",
    "source_id": "<string>"
  }
}
'
{
  "watermarked_content": "<string>",
  "fingerprint_id": "<string>",
  "tkg_snapshot": {
    "entities": [
      "<string>"
    ],
    "timeseries": [
      "<string>"
    ],
    "relations": [
      {
        "from": "<string>",
        "rel": "<string>",
        "to": "<string>"
      }
    ],
    "argument_map": [
      {
        "premise": "<string>",
        "evidence": "<string>",
        "conclusion": "<string>"
      }
    ]
  },
  "embed_timestamp": "2023-11-07T05:31:56Z",
  "meta": {
    "executionTimeMs": 123
  }
}

Documentation Index

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

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

Authorizations

Authorization
string
header
required

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

Body

application/json
url
string<uri>
required

URL of the source document to fingerprint

content_type
enum<string>
default:news

Category of the content being fingerprinted

Available options:
news,
report,
legal,
internal
metadata
object

Response

Fingerprint embedded successfully

watermarked_content
string
required

Original content with TKG-seeded zero-width Unicode watermark embedded

fingerprint_id
string
required

Unique fingerprint identifier (fp_*)

tkg_snapshot
object
required
embed_timestamp
string<date-time>
required

ISO 8601 timestamp of fingerprint embedding

meta
object
required