AIXBT Docs

Project Neighbors (co-mentioned projects)

GET
/v2/projects/{id}/neighbors

Projects co-mentioned with this one in the same intel posts within a recency window — neighbours in the source-sharing graph, ranked by how often they co-occur. Two projects are neighbours when the same originating post (source.sourceId) appears in the activity ledger of a signal for each. High-degree roundup posts are excluded, candidates are canonical-id-deduped, and the seed itself is excluded.

This is a co-occurrence signal (discussed alongside), not a structural relationship like shared team, ecosystem, or category.

Path Parameters

id*string

MongoDB ObjectId of the seed project

Query Parameters

since?string

Recency window. Relative forms like 14d, 7d, 48h.

Default"14d"
limit?integer

Number of neighbours to return (1-50)

Default5
Range1 <= value <= 50

Response Body

application/json

curl -X GET "https://example.com/v2/projects/string/neighbors?since=14d"
{
  "status": 200,
  "data": [
    {
      "projectId": "string",
      "projectName": "string",
      "joiningSignals": 0,
      "joiningReinforcements": 0
    }
  ]
}
Empty
Empty
Empty