Test a real wall first
Upload a photo in the playground, inspect the overlay, and tune the confidence threshold before writing integration code.
You bring the idea. OwnClimb brings the climbing vision: turn wall photos into hold data without first becoming a machine-learning team.
OwnClimb handles the computer vision. You get a place to test it, useful geometry, and a small API to build on.
Upload a photo in the playground, inspect the overlay, and tune the confidence threshold before writing integration code.
Every detected hold comes back as a polygon with a confidence score, ready to draw, filter, or turn into your own interaction.
Use the built-in wall and climb tools, or take the same result through the REST API and build the app you had in mind.
Submit an image and receive a run immediately. Poll for the result when that is enough, or stream each stage into your interface.
curl https://ownclimb.com/api/v1/runs \
-H "Authorization: Bearer oc_your_key" \
-F "image=@wall.jpg"
# 202 Accepted
{ "id": "7fc…", "status": "queued" }
curl https://ownclimb.com/api/v1/runs/7fc… \
-H "Authorization: Bearer oc_your_key"
# 200 OK
{
"status": "done",
"result": {
"holds": [
{ "polygon": […], "confidence": 0.96 }
]
}
}Start on the personal licence while the idea is yours. Move to Commercial when the product is published or making money.
The complete product for experiments, home walls, and the app you are still figuring out.
The same tools and API, with a licence for products you publish, sell, or use in a business.