> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tic.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Get flight images at a point in Sweden (with metadata)

> Same as `GetFlightImagesBySePoint` but returns the full upstream response including processing metadata and error codes, instead of just the image list.

<Badge color="yellow" size="sm">Enterprise+ tier</Badge>


## OpenAPI

````yaml get /flight-images/se/by-point/with-metadata
openapi: 3.1.1
info:
  title: TIC Lens API
  description: "The TIC Lens API provides programmatic access to company, person, property, vehicle, and order data.\r\n\r\n## Authentication\r\n\r\nAll requests require an API key passed via the `x-api-key` header:\r\n\r\n```bash\r\ncurl -H \"x-api-key: YOUR_API_KEY\" https://lens-api.tic.io/companies/123\r\n```\r\n\r\nAPI keys are managed through the TIC Lens web application under **Settings → API Keys**.\r\n\r\n## Base URL\r\n\r\n| Environment | URL |\r\n|-------------|-----|\r\n| Production  | `https://lens-api.tic.io` |\r\n\r\n## Feature Access\r\n\r\nEndpoints are gated by your subscription plan. If your plan does not include a feature, the endpoint will return `403 Forbidden`.\r\n\r\n## Rate Limits\r\n\r\nRate limits are applied per API key. If you exceed the limit, requests will return `429 Too Many Requests`.\r\n\r\n## Response Format\r\n\r\nAll responses are JSON. Null values are omitted from responses.\r\n"
  version: v1
servers:
  - url: https://lens-api.tic.io
security:
  - ApiKey: []
tags:
  - name: Addresses
  - name: Bolagsverket
  - name: Brf
  - name: Companies
  - name: Documents
  - name: FlightImages
  - name: Free
  - name: Orders
  - name: OrdersExports
  - name: PaymentControl
  - name: PaymentControlImport
  - name: Persons
  - name: Properties
  - name: PublicSearch
  - name: SearchAutocomplete
  - name: Sentinel
  - name: ServingPermits
  - name: Team
  - name: Teams
  - name: Transportstyrelsen
  - name: Vehicles
  - name: WatchList
paths:
  /flight-images/se/by-point/with-metadata:
    get:
      tags:
        - FlightImages
      summary: Get flight images at a point in Sweden (with metadata)
      description: >-
        Same as `GetFlightImagesBySePoint` but returns the full upstream
        response including processing metadata and error codes, instead of just
        the image list.
      operationId: GetFlightImagesBySePointWithMetadata
      parameters:
        - name: latitude
          in: query
          description: Latitude in WGS84 (−90 to 90)
          required: true
          schema:
            type: number
            format: double
        - name: longitude
          in: query
          description: Longitude in WGS84 (−180 to 180)
          required: true
          schema:
            type: number
            format: double
        - name: bufferDistance
          in: query
          description: Buffer radius around the point, in meters (20–200). Default 100.
          schema:
            type: number
            format: double
            default: 100
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: >-
                  #/components/schemas/Ormeo_Library_Lantmateriet_Dto_Lantmateriet_OrthophotoResponse_Dto
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/Ormeo_Library_Lantmateriet_Dto_Lantmateriet_OrthophotoResponse_Dto
            text/json:
              schema:
                $ref: >-
                  #/components/schemas/Ormeo_Library_Lantmateriet_Dto_Lantmateriet_OrthophotoResponse_Dto
        '404':
          description: Not Found
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/Microsoft_AspNetCore_Mvc_ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/Microsoft_AspNetCore_Mvc_ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/Microsoft_AspNetCore_Mvc_ProblemDetails'
components:
  schemas:
    Ormeo_Library_Lantmateriet_Dto_Lantmateriet_OrthophotoResponse_Dto:
      type: object
      properties:
        flightImages:
          type:
            - 'null'
            - array
          items:
            $ref: >-
              #/components/schemas/Ormeo_Library_Lantmateriet_Dto_Lantmateriet_Orthophoto_Dto
        error:
          type:
            - 'null'
            - string
        errorCode:
          $ref: >-
            #/components/schemas/Ormeo_Library_Lantmateriet_Dto_OrthophotoErrorCode
        success:
          type: boolean
          readOnly: true
        requestedPropertyId:
          type:
            - 'null'
            - string
        totalProcessingTimeMs:
          type:
            - 'null'
            - integer
          format: int64
      additionalProperties: false
    Microsoft_AspNetCore_Mvc_ProblemDetails:
      type: object
      properties:
        type:
          type:
            - 'null'
            - string
        title:
          type:
            - 'null'
            - string
        status:
          type:
            - 'null'
            - integer
          format: int32
        detail:
          type:
            - 'null'
            - string
        instance:
          type:
            - 'null'
            - string
      additionalProperties: {}
    Ormeo_Library_Lantmateriet_Dto_Lantmateriet_Orthophoto_Dto:
      type: object
      properties:
        lantmateriet_OrderImageFileId:
          type: integer
          format: int32
        flightYear:
          type:
            - 'null'
            - integer
          format: int32
        flightAltitude:
          type:
            - 'null'
            - integer
          format: int32
        resolution:
          type:
            - 'null'
            - number
          format: double
        spectralType:
          type:
            - 'null'
            - string
        fileName:
          type:
            - 'null'
            - string
        fileNameLength:
          type: integer
          format: int64
        fileNameReduced:
          type:
            - 'null'
            - string
        fileNameReducedLength:
          type: integer
          format: int64
        url:
          type:
            - 'null'
            - string
          readOnly: true
        urlReduced:
          type:
            - 'null'
            - string
          readOnly: true
        error:
          type:
            - 'null'
            - string
        processingTimeMs:
          type:
            - 'null'
            - integer
          format: int64
        fromCache:
          type: boolean
        flightRecordingStarted:
          type:
            - 'null'
            - string
          format: date-time
        flightRecordingEnded:
          type:
            - 'null'
            - string
          format: date-time
        totalArea:
          type: integer
          format: int32
        numberOfAreas:
          type: integer
          format: int32
      additionalProperties: false
    Ormeo_Library_Lantmateriet_Dto_OrthophotoErrorCode:
      enum:
        - none
        - invalidPropertyId
        - invalidCoordinates
        - invalidBufferDistance
        - propertyNotFound
        - noImagesAvailable
        - areaTooLarge
        - tooManyTiles
        - geographicSpreadTooLarge
        - imageFileNotFound
        - imageProcessingFailed
        - databaseError
        - unknownError
      type: string
  securitySchemes:
    ApiKey:
      type: apiKey
      name: x-api-key
      in: header

````