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

# List themes you can post to

> List the **live clan themes you can enter** with
[`POST /v1/posts`](/api-reference/social/publish-a-post) — pass a theme's `id` as
`theme_id`. A theme is a time-boxed creative event hosted by a clan
(`budgetpixel.com/themes/<id>`); entered posts appear on the theme's page.

Includes every live theme of the clans you **own, moderate, or have joined**,
with your `role` in each clan. Themes of clans you're banned from, or whose owner
you have a block with, are left out. Themes that haven't started or have ended
are left out too, since they don't accept entries.

Ordered by deadline, soonest first (`ends_at`). Returns at most 100 themes.
**Free** — no credits are charged.




## OpenAPI

````yaml /openapi.yaml get /themes
openapi: 3.1.0
info:
  contact:
    email: support@budgetpixel.com
    name: BudgetPixel Support
  description: >
    The BudgetPixel developer API for programmatic image, video, music and

    sound-effect generation.


    Generation is **asynchronous**: you create a job, then poll its status until
    it

    reaches a terminal state (`succeeded` / `failed`). You are charged in
    credits

    only on success — never for failures, timeouts, or content blocked before

    generation.


    **Authentication.** All requests require an API key sent as a bearer token:

        Authorization: Bearer bpx_live_xxx

    Create and manage keys from your BudgetPixel account dashboard. The
    developer

    API is available on **every paid plan**. On the **Free** plan, API keys can
    call

    one endpoint: `GET /v1/stock/images`, the free stock image library search.


    **Pricing.** API usage is metered in credits at each model's published price

    (see `GET /v1/models`), and your plan's model discounts and active
    promotions

    apply to API charges exactly as they do on the web — `POST /v1/cost` quotes

    your discounted price. Pro and Ultra plans include a daily free-models

    allowance (a shared pool of free generations per day across qualified image

    models such as FLUX 2 Klein and Qwen-Image) that covers API

    requests too — the standard price applies once the day's pool is used.

    Other promotional free daily generations remain web/app-only. Failed

    generations are never charged.


    **Rate limits.** Requests are limited per minute: **600 requests/min per API

    key** and **1200 requests/min per source IP** (defaults; subject to tuning).

    Every response carries `X-RateLimit-Limit`, `X-RateLimit-Remaining`, and

    `X-RateLimit-Reset` (seconds until the window resets). Exceeding a limit

    returns HTTP `429` with a `Retry-After` header — wait that long before

    retrying. Rejected requests still count against the window, so a tight retry

    loop keeps you limited; back off instead. Generation jobs additionally have
    a

    per-plan concurrency cap (the same one as the web workshop), independent of

    these request limits. `POST /v1/uploads` also has a dedicated **60
    uploads/min

    per account** cap (it's free/unmetered) on top of these limits.
  title: BudgetPixel API
  version: '2026-06-20'
servers:
  - description: Production
    url: https://api.budgetpixel.com/v1
security:
  - ApiKeyAuth: []
tags:
  - description: Account and credit balance
    name: Account
  - description: Discover available models and pricing
    name: Models
  - description: Upload input media for image/video generation
    name: Uploads
  - description: Image job status
    name: Images
  - description: FLUX image models
    name: Black Forest Labs
  - description: SeeDream image models
    name: Bytedance
  - description: Video job status
    name: Videos
  - description: Kuaishou Kling video models
    name: Kling
  - description: SeeDance video models
    name: ByteDance (SeeDance)
  - description: Music and sound-effect job status
    name: Audios
  - description: Music generation models
    name: Music
  - description: Text-to-sound-effect models (priced per second)
    name: Sound Effects
  - description: Format conversion for images, video, and audio
    name: Conversions
  - description: Publish posts to your BudgetPixel feed and enter clan themes
    name: Social
  - description: Content moderation — NSFW rating and CSAM detection
    name: Moderation
  - description: Content classification — music genre detection
    name: Classification
  - description: >-
      Search the free stock image library — available on every plan, including
      Free
    name: Stock Images
paths:
  /themes:
    get:
      tags:
        - Social
      summary: List themes you can post to
      description: >
        List the **live clan themes you can enter** with

        [`POST /v1/posts`](/api-reference/social/publish-a-post) — pass a
        theme's `id` as

        `theme_id`. A theme is a time-boxed creative event hosted by a clan

        (`budgetpixel.com/themes/<id>`); entered posts appear on the theme's
        page.


        Includes every live theme of the clans you **own, moderate, or have
        joined**,

        with your `role` in each clan. Themes of clans you're banned from, or
        whose owner

        you have a block with, are left out. Themes that haven't started or have
        ended

        are left out too, since they don't accept entries.


        Ordered by deadline, soonest first (`ends_at`). Returns at most 100
        themes.

        **Free** — no credits are charged.
      operationId: listThemes
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  themes:
                    items:
                      $ref: '#/components/schemas/Theme'
                    type: array
                type: object
          description: >-
            The themes you can post to (an empty list when you aren't in any
            clan with a live theme).
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '429':
          $ref: '#/components/responses/TooManyRequests'
components:
  schemas:
    Theme:
      description: A live clan theme you can enter with `POST /v1/posts` `theme_id`.
      properties:
        clan:
          description: The clan hosting the theme.
          properties:
            id:
              type: integer
            name:
              example: Neon Collective
              type: string
            role:
              description: Your role in this clan.
              enum:
                - owner
                - moderator
                - member
              type: string
            slug:
              example: neon-collective
              type: string
            url:
              example: https://budgetpixel.com/clans/neon-collective
              format: uri
              type: string
          type: object
        description:
          description: The theme's brief from its host.
          type: string
        ends_at:
          description: Entries close at this time.
          format: date-time
          type: string
        entry_count:
          description: Posts entered so far.
          type: integer
        id:
          description: Pass this as `theme_id` on `POST /v1/posts`.
          example: 75
          type: integer
        participant_count:
          description: Distinct creators who have entered.
          type: integer
        starts_at:
          format: date-time
          type: string
        title:
          example: Neon Noir
          type: string
        url:
          description: Public page listing the theme's entries.
          example: https://budgetpixel.com/themes/75
          format: uri
          type: string
      type: object
    Error:
      properties:
        error:
          properties:
            code:
              description: Stable machine-readable code.
              example: model_not_available
              type: string
            message:
              type: string
            type:
              description: Error category.
              example: invalid_request_error
              type: string
          required:
            - type
            - code
            - message
          type: object
      required:
        - error
      type: object
  responses:
    Unauthorized:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
      description: Missing or invalid API key.
    Forbidden:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
      description: >-
        Authenticated but not permitted (plan gate, ownership, account
        restriction). Content-moderation blocks are 400, not 403.
    TooManyRequests:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
      description: Rate or queue limit reached. Retry after a short delay.
  securitySchemes:
    ApiKeyAuth:
      bearerFormat: bpx_live_*
      description: 'API key as a bearer token: Authorization: Bearer bpx_live_xxx'
      scheme: bearer
      type: http

````