Skip to main content
GET
/
v1
/
forensics
/
v2
/
{project_id}
/
entries
List forensic news entries for a project
curl --request GET \
  --url https://vcm-fyi-api.fly.dev/v1/forensics/v2/{project_id}/entries \
  --header 'X-API-KEY: <api-key>'
{
  "pagination": {
    "total_entries": 123,
    "current_page": 123,
    "total_pages": 123,
    "next_page": "<string>"
  },
  "data": [
    {
      "id": 123,
      "project_id": "<string>",
      "entry_hash": "<string>",
      "date": "<string>",
      "category": "<string>",
      "source": "<string>",
      "key_event": "<string>",
      "market_impact": "<string>",
      "url": "<string>",
      "first_seen_date": "2023-12-25",
      "first_seen_week": 123,
      "first_seen_year": 123,
      "is_new_this_week": false,
      "project_name": "<string>",
      "project_country": "<string>",
      "project_proponent": "<string>",
      "project_registry": "<string>"
    }
  ]
}

Authorizations

X-API-KEY
string
header
required

Path Parameters

project_id
string
required

Query Parameters

category
string | null

Filter by category

current_page
integer
default:1

Page number

Required range: x >= 1
per_page
integer
default:50

Items per page

Required range: 1 <= x <= 100

Response

Paginated list of forensic news entries for the project

Paginated response for news entries.

pagination
Pagination · object
required
data
ForensicNewsEntryResponse · object
required

Response model for a single news entry.