A

AppVeyor REST API

by AppVeyor REST Free tier

AppVeyor is a hosted continuous integration service which runs on Microsoft Windows. The AppVeyor REST API provides a RESTful way to interact with the AppVeyor service. This includes managing projects, builds, deployments, and the teams that build them. Additional help and discussion of the AppVe

communicationappveyor

Quick Reference

Base URL https://ci.appveyor.com/api Auth type API Key Header Auth header Authorization: YOUR_API_KEY Rate limit 60 req/min Pricing Enterprise / contact sales Free quota None Documentation https://www.appveyor.com/about/ Endpoint status Live — HTTP 200 — endpoint is accessible1.25s (checked Mar 29, 2026) Builder score C 55% builder-friendly
Pricing
28
Latency
60
Depth
72

Authentication

API key in the request header (Authorization)

Authorization: YOUR_API_KEY

Pricing

Model subscription Starting price Enterprise / contact sales Free quota None

Free for open source (unlimited builds). Build Cloud from $29/mo (1 concurrent job, private repos). Plus $49/mo. Professional $99/mo. Enterprise $399/mo.

Key Endpoints

MethodPathDescription
POST /account/encrypt Encrypt a value for use in StoredValue.
GET /buildjobs/{jobId}/artifacts Get build artifacts
GET /buildjobs/{jobId}/artifacts/{artifactFileName} Download build artifact
GET /buildjobs/{jobId}/log Download build log
POST /builds Start build of branch most recent commit
PUT /builds Re-run build
DELETE /builds/{accountName}/{projectSlug}/{buildVersion} Cancel build
GET /collaborators Get collaborators

Sample Request

curl -X GET 'https://ci.appveyor.com/api/account/encrypt' \
  -H 'Authorization: YOUR_API_KEY'

Sample Response

{}

Data sourced from API Map. Always verify pricing and rate limits against the official AppVeyor REST documentation.