Project Document Search

Performs a semantic search within the documents of a specific project.

Project Document Search API

  • URL: /project-documents/search

  • Method: POST

  • Returns: A json with a list of citations as well as an summarized response.

Query Parameters

Parameter
Type
Description

id

int

Project ID

registry

string

Registry of the project.

query

string

Semantic search query.

Sample Requests

cURL

curl -X POST https://api.sequestor.dev/project-documents/search \
-H "Content-Type: application/json" \
-d '{
  "projectId": 2000,
  "registry": "Verra",
  "query": "What is the baseline scenario?"
}'

Python

Sample Response

Last updated