Skip to main content
GET
/
api
/
v0
/
documents
Get all documents
curl --request GET \
  --url https://api.example.com/api/v0/documents
[
  {
    "id": 123,
    "name": "string",
    "folder_id": {},
    "file_path": {},
    "file_type": "string",
    "file_url": {},
    "summary": "string",
    "visibility": "string",
    "version": 123,
    "owner_id": 123,
    "created_at": "string",
    "updated_at": "string",
    "tags": [
      "string"
    ]
  }
]

Documentation Index

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

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

Get all documents

Retrieves a list of all visible documents in the system.

Query Parameters

string
The ID of the folder to filter documents by.
string
The name of the tag to filter documents by.
string
The ID of the owner to filter documents by.

Response

data
object
The response data for this endpoint.
[
  {
    "id": 123,
    "name": "string",
    "folder_id": {},
    "file_path": {},
    "file_type": "string",
    "file_url": {},
    "summary": "string",
    "visibility": "string",
    "version": 123,
    "owner_id": 123,
    "created_at": "string",
    "updated_at": "string",
    "tags": [
      "string"
    ]
  }
]