Search roadmaps by name

Search roadmaps by name

GET
/roadmaps/search/{name}
AuthorizationBearer <token>

JWT Bearer token authentication

In: header

Path Parameters

namestring

Roadmap name

Response Body

curl -X GET "http://localhost:8000/api/v1/roadmaps/search/string"
{
  "roadmaps": [
    {
      "id": {},
      "name": {},
      "url": {},
      "color": {},
      "index": 0,
      "display": true,
      "created_at": "2025-09-23T13:28:01.611Z"
    }
  ]
}
{
  "message": "You do not have permission to perform this action.",
  "code": "NOT_ENOUGH_PERMISSION"
}
{
  "message": "Something went wrong!",
  "code": "SERVER_ERROR"
}