Skip to main content
GET
/
api
/
v1
/
vault
/
get_metadata
/
{project_id}
Get Project Metadata
curl --request GET \
  --url https://api.harvey.ai/api/v1/vault/get_metadata/{project_id} \
  --header 'Authorization: Bearer <token>'
{
  "response": {
    "content": [
      {
        "project_id": "01936a5f-53a0-7b33-91aa-3bd2441ccc89",
        "file_ids": [
          "01936a5f-8289-703a-9962-42bf196ae611",
          "01936a5f-82a2-708a-9df6-91d72c1cd26d",
          "01936a5f-82de-7096-a7c2-021638a813ad"
        ],
        "file_names": [
          "Employment Agreement - John Smith.pdf",
          "Merger Agreement - Acme Corp.docx",
          "Non-Disclosure Agreement - TechCo Inc.pdf"
        ],
        "file_count": 3,
        "max_file_count": 100000,
        "project_size": "11015244",
        "max_project_size": 107374182400
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

project_id
string
required

The project ID.

Response

Project metadata details

response
object