Search Land Abstract
Search a Land Abstract and return the Land Instruments it contains
Search an abstract for land instruments
POST https://api.annolab.ai/v1/abstract/land/instruments/search
Returns the land instruments associated with one abstract, including the instrument's extracted recording data, parties, dates, page boundaries, and tract conveyances.
The response is paginated, returning up to 200 instruments at a time. Start with page 1, then request successive pages while hasMorePages is true.
Headers
Authorization*
String
API key authentication. The key must have the read:all scope, and its owner must have permission to export the project.
{"Authorization": "Api-Key XXXXXXX-XXXXXXX-XXXXXXX"}
Content-Type
String
Must be application/json.
Request Body
projectIdentifier*
String | Integer
Either the name of the AnnoLab project or the the project ID.
groupName
String
Name of the group that owns the project. When omitted, the project is resolved for the API key's owner.
abstractIdentifier*
String | Integer
The name of the Abstract where search will be performed or the ID of the Abstract
page
Number
Page to return. Defaults to 1.
Example Request Body
{
"projectIdentifier": "Permian Basin Title Project",
"groupName": "Oil Company 1",
"abstractIdentifier": "Reeves County Abstract 42",
"page": 1
}Search Result Object
page
Number
Page number returned.
hasMorePages
Boolean
Whether another page of results is available.
Errors
400 Bad Request
The request body is invalid, the project does not exist, or the abstract does not exist in the selected project.
401 Unauthorized
The API key is missing or invalid.
403 Forbidden
The API key lacks the required scope or its owner does not have permission to export the project.
Last updated
Was this helpful?