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

# Get Google Ads billing status

> <Info>This API is in beta. Endpoints, fields, and behavior may still change, so avoid depending on it in production.</Info>

Reports whether the workspace can be charged for ad spend, and shows the card on file.

Read this before creating or resuming a campaign, both of which need a usable card.

<Warning>The check fails closed. When Base44 cannot reach the payment provider it returns `has_payment_method: false` with `stripe_unavailable: true`, which means "could not check" rather than "no card". Retry in that case instead of telling someone to add a card.</Warning>

<Note>This endpoint accepts a personal API key. Workspace API keys are not authorized for it and are rejected with a 403.</Note>

<Warning>The response includes fields beyond the ones documented here. Don't rely on undocumented response fields, as they can change at any time.</Warning>



## OpenAPI

````yaml /developers/references/app-management/app-management-openapi.json get /api/apps/{app_id}/google-ads/billing/status
openapi: 3.1.0
info:
  title: Base44 App Management API
  version: 1.0.0
servers:
  - url: https://app.base44.com
security:
  - ApiKeyAuth: []
paths:
  /api/apps/{app_id}/google-ads/billing/status:
    get:
      summary: Get Google Ads billing status
      description: >-
        <Info>This API is in beta. Endpoints, fields, and behavior may still
        change, so avoid depending on it in production.</Info>


        Reports whether the workspace can be charged for ad spend, and shows the
        card on file.


        Read this before creating or resuming a campaign, both of which need a
        usable card.


        <Warning>The check fails closed. When Base44 cannot reach the payment
        provider it returns `has_payment_method: false` with
        `stripe_unavailable: true`, which means "could not check" rather than
        "no card". Retry in that case instead of telling someone to add a
        card.</Warning>


        <Note>This endpoint accepts a personal API key. Workspace API keys are
        not authorized for it and are rejected with a 403.</Note>


        <Warning>The response includes fields beyond the ones documented here.
        Don't rely on undocumented response fields, as they can change at any
        time.</Warning>
      operationId: get_billing_status_api_apps__app_id__google_ads_billing_status_get
      parameters:
        - name: app_id
          in: path
          required: true
          schema:
            type: string
            description: ID of the app whose Google Ads campaigns to manage.
            title: App Id
          description: ID of the app whose Google Ads campaigns to manage.
          example: 6820f3a4e7b91d003c45a1f2
      responses:
        '200':
          description: Whether the workspace can be charged, and the card on file.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BillingStatusResponse'
        '401':
          description: Missing or invalid credentials.
        '403':
          description: >-
            You don't have access to this app, the app does not exist, or you
            used a workspace API key. A missing app and an app you cannot reach
            are deliberately the same answer.
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    BillingStatusResponse:
      properties:
        has_payment_method:
          type: boolean
          title: Has Payment Method
          description: >-
            `true` when a usable card is on file. Read it together with
            `stripe_unavailable`, which changes what a `false` means.
          example: true
        stripe_unavailable:
          type: boolean
          title: Stripe Unavailable
          description: >-
            `true` when Base44 could not reach the payment provider.
            `has_payment_method` then reports `false` because the check fails
            closed, not because the card is missing. Retry rather than telling
            someone to add a card.
          example: false
        currency_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Currency Code
          description: >-
            Currency the workspace is billed in, as an ISO 4217 code. `null`
            before a card is on file.
          example: EUR
        payment_method_brand:
          type: string
          title: Payment Method Brand
          description: Card brand, for display. Empty when no card is on file.
          example: visa
        payment_method_last4:
          anyOf:
            - type: string
            - type: 'null'
          title: Payment Method Last4
          description: >-
            Last four digits of the card, for display. `null` when no card is on
            file.
          example: '4242'
      type: object
      required:
        - has_payment_method
        - stripe_unavailable
        - payment_method_brand
      title: BillingStatusResponse
      description: >-
        Whether the workspace can be charged for ad spend.


        Omits `stripe_customer_id`, which the response also carries. It is
        Base44's

        own billing-system identifier and has no caller use.
    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
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: api_key
      description: Personal API key.

````