BetTip Draws API World API

The World API from BetTip Draws API — 3 operation(s) for world.

Operations 3

GET /world/next.json Next scheduled draw per game, with estimates and unavailable times labelled #
GET /world/latest.json Latest result per international game #
GET /world/draws.json International draws on record #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/bettip-draws-api-world-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

bettip-draws-api-world-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: BetTip Draws World API
  version: 1.0.0
  description: 'Free JSON and CSV feed of UK49s (5801 draws since 2018-09-01), Gosloto and South African National Lottery results. No key. Attribution: BetTip, https://bettip.co.za/'
  contact:
    name: BetTip
    url: https://bettip.co.za/api/
  license:
    name: CC BY 4.0 (data), MIT (code)
servers:
- url: https://bettip.co.za/api/v1
tags:
- name: World
paths:
  /world/next.json:
    get:
      summary: Next scheduled draw per game, with estimates and unavailable times labelled
      parameters:
      - name: game
        in: query
        required: false
        schema:
          type: string
        description: Optional game slug within this family
      responses:
        '200':
          description: Computed timetable, not confirmation of result publication
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FamilyNext'
        '404':
          description: Unknown game
      tags:
      - World
      operationId: getWorldNextJson
      x-operation-id-source: derived
  /world/latest.json:
    get:
      summary: Latest result per international game
      responses:
        '200':
          description: OK
      tags:
      - World
      operationId: getWorldLatestJson
      x-operation-id-source: derived
  /world/draws.json:
    get:
      summary: International draws on record
      responses:
        '200':
          description: OK
      tags:
      - World
      operationId: getWorldDrawsJson
      x-operation-id-source: derived
components:
  schemas:
    FamilyNext:
      type: object
      properties:
        computedAt:
          type: string
          format: date-time
        data:
          type: object
          properties:
            byGame:
              type: object
              additionalProperties:
                $ref: '#/components/schemas/ScheduleGame'
            next:
              type:
              - object
              - 'null'
              allOf:
              - $ref: '#/components/schemas/ScheduleGame'
    ScheduleGame:
      type: object
      properties:
        game:
          type: string
        name:
          type: string
        scheduleStatus:
          type: string
          enum:
          - site
          - observed
          - official
          - official-approximate
          - pending
        estimated:
          type: boolean
        note:
          type: string
        source:
          type:
          - string
          - 'null'
        checkedAt:
          type:
          - string
          - 'null'
        next:
          type:
          - object
          - 'null'
          properties:
            atUtc:
              type: string
              format: date-time
            dateSast:
              type: string
              format: date
            atSast:
              type: string
            secondsToGo:
              type: integer
              minimum: 1