> ## Documentation Index
> Fetch the complete documentation index at: https://docs.twinbay.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# List suggested starting states

> Described states the product ships for each twin that can be seeded. Send one back as a seed's `prompt`, edited or as it stands.



## OpenAPI

````yaml https://api.twinbay.ai/openapi.json get /seeds/suggestions
openapi: 3.1.0
info:
  title: Twinbay
  description: Backend API
  version: 0.1.0
servers:
  - url: https://api.twinbay.ai
    description: Production
security: []
tags:
  - name: healthchecks
    description: Healthcheck endpoints
  - name: users
    description: >-
      The current user. Sign-up and sign-in happen in WorkOS AuthKit, which
      issues the access tokens this API accepts.
  - name: organizations
    description: >-
      Organizations the caller belongs to. Every authenticated request acts
      inside exactly one organization — the one its access token names — so
      these routes address it as `current`.
  - name: api-keys
    description: >-
      Long-lived credentials for callers that cannot hold an AuthKit session —
      agents, SDKs, CI. A key is accepted wherever an access token is, and acts
      with the role its creator holds when the request arrives.
  - name: environments
    description: >-
      Create and edit isolated provider environments. Each environment contains
      behavioural twins from the `twins` package.
  - name: twins
    description: Browse the digital twins available for new environments.
  - name: seeds
    description: >-
      Starting states for a twin. Describe the data you want in your own words,
      and a worker expands it into rows once; pass the seed's id when you create
      an environment to start a twin holding it.
paths:
  /seeds/suggestions:
    get:
      tags:
        - seeds
      summary: List suggested starting states
      description: >-
        Described states the product ships for each twin that can be seeded.
        Send one back as a seed's `prompt`, edited or as it stands.
      operationId: list_seed_suggestions
      parameters:
        - name: twin
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Only suggestions for this twin's slug.
            title: Twin
          description: Only suggestions for this twin's slug.
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SeedSuggestionResponse'
                title: Response List Seed Suggestions
        '401':
          description: The credential is missing, malformed, expired, or not trusted
        '403':
          description: The credential does not act inside an organization
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - Access token: []
        - Organization API key: []
components:
  schemas:
    SeedSuggestionResponse:
      properties:
        twin:
          type: string
          title: Twin
        name:
          type: string
          title: Name
        prompt:
          type: string
          title: Prompt
      type: object
      required:
        - twin
        - name
        - prompt
      title: SeedSuggestionResponse
      description: >-
        A starting state the product suggests, as a name and a description to
        edit.


        Built-in starters are not a second mechanism: they are described states
        a

        caller can send straight back to `POST /seeds`, so there is one store,
        one

        apply path and no seed that belongs to nobody.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    Access token:
      type: http
      description: Access token issued by WorkOS AuthKit.
      scheme: bearer
    Organization API key:
      type: apiKey
      description: >-
        An organization API key. Create one at
        https://console.twinbay.ai/api-keys
      in: header
      name: X-API-Key

````