Skip to content
Discussion options

You must be logged in to vote

The /validate endpoint is coming from the titiler.extensions.cogValidateExtension extension

https://developmentseed.org/titiler/advanced/Extensions/#titilerextensionscogvalidateextension

from fastapi import FastAPI
from titiler.core.factory import TilerFactory
from titiler.extensions import cogValidateExtension

# Create a FastAPI application
app = FastAPI(description="A lightweight Cloud Optimized GeoTIFF tile server")

# Create a set of endpoints using TiTiler TilerFactory
tiler = TilerFactory(
    router_prefix="/cog",
    extensions=[
        cogValidateExtension()  # the cogeoExtension will add a rio-cogeo /validate endpoint
    ]
)

# Register endpoints to the application
app.includ…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by krishnaglodha
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #1224 on September 18, 2025 06:21.