@lap v0.3
# Machine-readable API spec. Each @endpoint block is one API call.
@api API V1
@base https://www.versioneye.com
@version v1
@auth ApiKey apiKey in header
@endpoints 3
@toc api(3)

@endpoint GET /api/v1/scans
@optional {name: str, per_page: str}
@returns(200)
@errors {404}

@endpoint GET /api/v1/scans/{id}
@required {id: str}
@returns(200)
@errors {404}

@endpoint GET /api/v1/scans/{id}/files/{file_id}
@required {id: str, file_id: str}
@optional {per_page: str}
@returns(200)
@errors {404}

@end
