Skip to main content
GET
/
{type_name}
/
{object_id}
/
links
Traverse object links
curl --request GET \
  --url https://server.meetdoris.com/api/v1/ontology/{type_name}/{object_id}/links \
  --header 'Authorization: Bearer <token>'
{
  "ok": true,
  "link_type": "has_stakeholder",
  "direction": "outbound",
  "source": {
    "type": "deal",
    "id": "5590756e-c2e2-50f9-ba17-0f8dcee493bd"
  },
  "results": [
    {
      "type": "person",
      "id": "a1b2c3d4-5678-9abc-def0-123456789abc",
      "title": "Diana Torres",
      "snippet": "VP of Operations at Apex Industries",
      "_link": {
        "influence_level": "high"
      }
    }
  ],
  "total": 3,
  "offset": 0,
  "limit": 50
}

Documentation Index

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

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

Authorizations

Authorization
string
header
required

API key with sk-live- prefix. Generate keys from Console → API Keys in the Doris app.

Path Parameters

type_name
enum<string>
required
Available options:
deal,
account,
meeting,
commitment,
objection,
competitor,
tactic,
strategy,
document,
person,
artifact,
pipeline,
lead,
insight
object_id
string<uuid>
required

Query Parameters

Filter by link type (e.g. has_stakeholder, surfaced_objection)

target_type
string

Filter by target object type

limit
integer
default:50
Required range: x <= 200

Response

200 - application/json

Linked objects

ok
boolean
direction
string
source
object
results
object[]
total
integer
offset
integer
limit
integer