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

# List data plans for a telco

> Returns the purchasable data bundles for a network. Live mode reads Nomba's live catalog; test mode returns the bundled catalog.



## OpenAPI

````yaml /openapi.json get /v1/vas/data-plans/{telco}
openapi: 3.1.0
info:
  title: Duro API
  version: 1.0.0
  description: >-
    Recovery-first subscription billing. Authenticate with a secret key
    (sk_test_ / sk_live_) as a bearer token. Amounts are in integer minor units
    (kobo).
servers:
  - url: https://api.useduro.com
    description: >-
      One base URL for both modes. The key prefix selects the mode: sk_test_… is
      test, sk_live_… is live. You never switch hosts or pass a mode parameter.
security:
  - bearerAuth: []
tags:
  - name: Plans
  - name: Promo Codes
  - name: Payment Links
  - name: Customers
  - name: Transactions
  - name: Subscriptions
  - name: Invoices
  - name: Recovery
  - name: Settings
  - name: Analytics
  - name: Checkout
  - name: Events
  - name: Merchant Balance
  - name: Payouts
  - name: VAS
  - name: OAuth
paths:
  /v1/vas/data-plans/{telco}:
    parameters:
      - name: telco
        in: path
        required: true
        schema:
          type: string
          enum:
            - mtn
            - airtel
            - glo
            - 9mobile
    get:
      tags:
        - VAS
      summary: List data plans for a telco
      description: >-
        Returns the purchasable data bundles for a network. Live mode reads
        Nomba's live catalog; test mode returns the bundled catalog.
      operationId: listDataPlans
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  items:
                    type: array
                    items:
                      $ref: '#/components/schemas/DataPlan'
components:
  schemas:
    DataPlan:
      type: object
      properties:
        plan:
          type: string
          example: 1.5GB - 30 Days
        amount:
          type: integer
          description: Plan price in naira.
          example: 1000
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Paste your secret key as the bearer token: sk_test_… (test) or sk_live_…
        (live). That is all a normal API call needs. OAuth access tokens from
        POST /v1/oauth/token also work, but a client id/secret is only for
        platforms acting on another tenant's behalf, not for your own
        integration.

````