Skip to main content

Documentation Index

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

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

GET
endpoint
/api/v1/files/:id
Retrieve a file’s metadata (not the file itself) from Forerunner.

Path Parameters

id
string
required
The unique identifier of the file

Response

file
object
errors
array
Array of error objects. See Errors.
curl https://app.withforerunner.com/api/v1/files/f8a3b2c1-d4e5-6789-abcd-ef0123456789 \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "file": {
    "id": "f8a3b2c1-d4e5-6789-abcd-ef0123456789",
    "filename": "123_main_st_ec.pdf",
    "mimeType": "application/pdf",
    "url": "https://app.withforerunner.com/files/f8a3b2c1-d4e5-6789-abcd-ef0123456789",
    "downloadURL": "https://app.withforerunner.com/files/f8a3b2c1-d4e5-6789-abcd-ef0123456789/download",
    "publicURL": "https://app.withforerunner.com/public/files/f8a3b2c1-d4e5-6789-abcd-ef0123456789",
    "property": {
      "id": "a1b2c3d4-e5f6-7890-abcd-ef0123456789",
      "address": "123 Main St, Springfield, IL 62701",
      "url": "https://app.withforerunner.com/properties/a1b2c3d4-e5f6-7890-abcd-ef0123456789",
      "publicURL": "https://app.withforerunner.com/public/properties/a1b2c3d4-e5f6-7890-abcd-ef0123456789",
      "coordinates": [39.7817, -89.6501],
      "parcel": {
        "id": "f1e2d3c4-b5a6-7890-dcba-098765432109",
        "parcelId": "12-34-567-890",
        "address": "123 Main St, Springfield, IL 62701"
      }
    }
  },
  "errors": []
}