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

# Account

> Plan, brand, Meta connection status, next batch date.



## OpenAPI

````yaml /api-reference/openapi.yaml get /me
openapi: 3.1.0
info:
  title: appstatic API
  version: '1.0'
  description: >-
    Generate audited Meta static ads for your app and push them to your ad
    account.
servers:
  - url: https://www.appstatic.io/api/v1
security:
  - bearerAuth: []
paths:
  /me:
    get:
      summary: Account
      description: Plan, brand, Meta connection status, next batch date.
      responses:
        '200':
          description: OK
        '401':
          description: Bad key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      type: object
      properties:
        error:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key from Settings → API & agents (as_live_…)

````