Documentation for automated readers
A curated documentation index is available at: https://grafana.com/llms.txt
A complete documentation index is available at: https://grafana.com/llms-full.txt
These indexes can help with page discovery before fetching individual documents.
This page is also available in Markdown, which may be easier for automated readers and AI tools to parse than HTML. The Markdown version is available at https://grafana.com/docs/grafana-cloud/testing/k6/reference/cloud-rest-api/deprecated-rest-api/organizations.md, or by sending Accept: text/markdown to https://grafana.com/docs/grafana-cloud/testing/k6/reference/cloud-rest-api/deprecated-rest-api/organizations/. For broader documentation discovery, the curated index is available at https://grafana.com/llms.txt and the complete index is available at https://grafana.com/llms-full.txt.
Organizations Legacy API
Warning
The Grafana Cloud k6 endpoints under this section are deprecated and planned for removal in the near future. Migrate to the latest API endpoints to avoid disruptions.
List organizations
Returns a list of organizations associated with the authenticated user along with organization details.
GET https://api.k6.io/v3/organizations
{
"organizations": [
{
"id": 0,
"name": "string",
"owner_id": 0,
"description": "string",
"billing_address": "string",
"billing_country": "string",
"billing_email": "user@example.com",
"vat_number": "string",
"created": "2020-08-13T18:28:45Z",
"updated": "2020-08-13T18:28:45Z",
"is_default": true
}
]
}Read organization details
Returns details for the specified organization.
GET https://api.k6.io/v3/organizations/{organization_id}
| Path Parameter | Type | Description |
|---|---|---|
| organization_id | integer | A unique integer value identifying this organization. |
{
"organization": {
"id": 0,
"name": "string",
"owner_id": 0,
"description": "string",
"billing_address": "string",
"billing_country": "string",
"billing_email": "user@example.com",
"vat_number": "string",
"created": "2020-08-13T18:28:45Z",
"updated": "2020-08-13T18:28:45Z",
"is_default": true
}
}Was this page helpful?
Related resources from Grafana Labs


