Retrieves a single extracted sheet by its ID. The response includes the sheet’s number, name, display name, parent file reference, page position, and any artifacts generated during extraction (e.g. sheet thumbnail, vector crop). Pass compact=true to omit artifact URLs when you only need metadata.
Endpoint
GET https://plangrep.com/api/open/v1/projects/{projectId}/sheets/{sheetId}
Path Parameters
The unique identifier of the project that owns the sheet.
The unique identifier of the sheet to retrieve.
Query Parameters
When true, artifact URL fields are stripped from the response.
Comma-separated list of sheet IDs. Can be used to validate that this sheet is within an expected set.
Optional filter by parent file ID.
Optional case-insensitive substring match on the parent file name.
Optional filter by parent file classification. One of: plans, specifications, documents, addenda, mixed, other.
Optional filter by parent file processing status.
Optional filter — returns the sheet only if it is located at this 1-based page number. Minimum: 1.
Optional filter — returns the sheet only if it matches this sheet number exactly.
Response
Returns an object containing the matching sheet entity.
The requested sheet entity. Show ProjectSheetEntity fields
Unique identifier for this sheet.
ID of the parent file this sheet was extracted from.
1-based page number within the source file.
Extracted sheet number (e.g. A1.01, M-300). May be null if not detected.
Extracted short sheet name or title block title.
Human-readable display name combining sheet number and title (e.g. A1.01 – Floor Plan).
Array of artifact objects containing URLs to derived outputs. Omitted when compact=true.
Example Request
curl -X GET "https://plangrep.com/api/open/v1/projects/proj_abc123/sheets/sheet_001" \
-H "Authorization: Bearer YOUR_API_TOKEN"
Example Response
{
"sheet" : {
"sheetId" : "sheet_001" ,
"fileId" : "file_001" ,
"fileName" : "Architectural_Plans_SetA.pdf" ,
"pageNumber" : 3 ,
"sheetNumber" : "A1.01" ,
"sheetName" : "First Floor Plan" ,
"sheetDisplayName" : "A1.01 – First Floor Plan" ,
"artifacts" : [
{ "type" : "thumbnail" , "url" : "https://..." },
{ "type" : "vector_crop" , "url" : "https://..." }
]
}
}