Documentation Index
Fetch the complete documentation index at: https://mintlify.com/s2-streamstore/s2/llms.txt
Use this file to discover all available pages before exploring further.
List basins in your account.
Query Parameters
Filter to basins whose names begin with this prefix.
Filter to basins whose names lexicographically start after this string.
It must be greater than or equal to the prefix if specified.
Number of results, up to a maximum of 1000.
Response
Matching basins (up to 1000 items).
Basin scope. Possible values: aws:us-east-1
Basin state. Possible values:
active - Basin is active
creating - Basin is being created
deleting - Basin is being deleted
Indicates that there are more basins that match the criteria.
Example
curl -X GET "https://aws.s2.dev/v1/basins?limit=10" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"
Response
{
"basins": [
{
"name": "my-basin-1",
"scope": "aws:us-east-1",
"state": "active"
},
{
"name": "my-basin-2",
"scope": "aws:us-east-1",
"state": "active"
}
],
"has_more": false
}