BK Software
We do our best BK Software Ltd
0%

Making Requests

All API endpoints accept standard HTTP methods.

Example — list projects

GET /v1/projects

curl https://api.bksoftware.co/v1/projects \
  -H "Authorization: Bearer YOUR_API_KEY"

Example — create a project

POST /v1/projects
Content-Type: application/json

{
  "name": "My App",
  "environment": "production",
  "region": "eu-west"
}

Query parameters

ParameterTypeDescription
limitintegerResults per page (default 20, max 100)
offsetintegerPagination offset
sortstringField to sort by (prefix - for desc)

Was this article helpful?