Welcome, Guest
You have to register before you can post on our site.

Username/Email:
  

Password
  





Latest Download Submissions Go to All Downloads
Web - My Sports Handbook (g36mitchell) - Submitted by TheSportsDBFan
Submit Date: 08-22-2024, 08:30 PM | Category: Tools and Scripts
PlexSportScanner (Project-Plex) V.0.9.1 - Submitted by TheSportsDBFan
Submit Date: 08-21-2024, 09:54 PM | Category: Plex Plugins
The Sports Database Python- metadata.thesportsdb.python V.1.1.7 - Submitted by TheSportsDBFan
Submit Date: 08-21-2024, 09:16 PM | Category: Kodi Addons
PHP TSDB TV-Guide (Vilhao) - Submitted by TheSportsDBFan
Submit Date: 08-20-2024, 08:53 PM | Category: Tools and Scripts
Texturecache.py V.1.0.0 - Submitted by TheSportsDBFan
Submit Date: 08-16-2024, 10:15 PM | Category: Tools and Scripts
 

Search Forums

(Advanced Search)

Forum Statistics
» Members: 210
» Latest member: daywalkerb1
» Forum threads: 81
» Forum posts: 89

Full Statistics

Online Users
There are currently 19 online users.
» 0 Member(s) | 19 Guest(s)

Latest Threads
Support & Documentation -...
Forum: Support - TSDB.club & TheSportsDB.com & TSDB.live & API Tester & TSDB NFO Creator/Builder/Generator
Last Post: Not-the-One
4 hours ago
» Replies: 2
» Views: 1,519
Support - The Sports Data...
Forum: Support - Projects that use data from TheSportsDB.com
Last Post: Hotch
02-04-2026, 04:01 AM
» Replies: 1
» Views: 862
English Premier League - ...
Forum: All about of Sport Events, Leagues, Bets and all other options
Last Post: ztayorlittlez6666
01-25-2026, 06:10 AM
» Replies: 1
» Views: 1,214
Local Solar Initiatives: ...
Forum: General Discussion
Last Post: Aaronarell
01-11-2026, 02:12 PM
» Replies: 0
» Views: 79
на каких биржах можно куп...
Forum: General Discussion
Last Post: Jamesroani
12-27-2025, 12:05 AM
» Replies: 0
» Views: 83
Обратные ссылки. Тематиче...
Forum: General Discussion
Last Post: Jamesroani
12-23-2025, 12:56 AM
» Replies: 0
» Views: 86
Community Solar Initiativ...
Forum: General Discussion
Last Post: Aaronarell
12-18-2025, 08:33 PM
» Replies: 0
» Views: 95
speed index
Forum: General Discussion
Last Post: Jamesroani
12-12-2025, 01:25 PM
» Replies: 0
» Views: 124
Why Are B Vitamins Includ...
Forum: General Discussion
Last Post: EddBfsymn
09-17-2025, 06:43 PM
» Replies: 0
» Views: 223
mega darknet market 2025 ...
Forum: General Discussion
Last Post: akaylaptrov8195
09-17-2025, 12:22 AM
» Replies: 0
» Views: 229

 
  TSDB TV-Guide (Vilhao)
Posted by: TheSportsDBFan - 08-20-2024, 08:47 PM - Forum: Presentation of your projects - No Replies

[WebProject - API V1+V2] TSDB TV-Guide: (Vilhao)

Developer: Vilhao / TheSportsDBFan (Upgrade to V2)
Description: A PHP based TV guide that serves as an example. You can switch between API V1 and V2.

Rights granted by developer to make the base code freely available. Hosted by: TSDB.club - Iframe:


Download: PHP TSDB TV-Guide (Vilhao)
Live Example: https://tsdb.club/Presentation_of_projec...isplay.php
Hint: This is about basic principles that should show, even in small detail, what is possible.

Task: Whoever develops the script further, not only makes it more beautiful, but also allows you to click on events, view the players in detail and find out details about the broadcasters... will receive an API KEY from me for 1 year. However, the project must be made available for everyone to use for at least 1 year and presented on this page. (Begin: DD/MM/YY GMT+2 20.08.2024 23:15:00)



Would you like to embed your project via iframe or host it with us? No problem, write to TheSportsDBFan!

Print this item

  Support - Our Rest Api Tool
Posted by: TheSportsDBFan - 08-20-2024, 10:05 AM - Forum: Support - TSDB.club & TheSportsDB.com & TSDB.live & API Tester & TSDB NFO Creator/Builder/Generator - No Replies

Support - Our Rest Api Tool:

This topic is intended to support the Rest API Tester Tool.

Full Version: API Tester

Example API V.2:
   

Please use following header:

Header Name: X_API_KEY
Header Value: your Api Key

Header Name: Content-Type
Header Value: application/json

Print this item

  TheSportsDB.com - Roadmap (submit requests and suggestions for improvement)
Posted by: TheSportsDBFan - 08-20-2024, 09:52 AM - Forum: General Discussion - No Replies

TheSportsDB.com Roadmap: (submit requests and suggestions for improvement)

Overview: Trello - TheSportsDB

Here you can also submit requests and suggestions for improvement, but also express your opinion.
   

Print this item

  GraphQL wrapper (sefininio)
Posted by: TheSportsDBFan - 08-20-2024, 09:14 AM - Forum: Presentation of your projects - No Replies

GraphQL wrapper to connect to the api of https://thesportsdb.com/.
 
Download: Github: https://github.com/sefininio/TheSportsDB
Developer: Sefi Ninio
Github Profile: https://github.com/sefininio

Print this item

  HTTP API client for Java/Kotlin - JVM based (Arthur)
Posted by: TheSportsDBFan - 08-20-2024, 09:05 AM - Forum: Presentation of your projects - No Replies

JVM based TheSportsDB HTTP API client to connect to the api of https://thesportsdb.com/ 


Download: Github: https://github.com/Biacode/jsportsdb
Developer: Arthur
Github Profile: https://github.com/Biacode

Java Example:

Code:
public class JavaDemoApp {
    public static void main(String[] args) {
        final SearchTeamClient searchTeamClient = new SearchTeamClientImpl();
        final ResultResponse searchTeamResult = searchTeamClient.byShortCode("Ars");
        System.out.println(searchTeamResult.asMap());
        System.out.println(searchTeamResult.asString());

        final ListSportsClient listSportsClient = new ListSportsClientImpl();
        final ResultResponse listSportsResult = listSportsClient.all();
        System.out.println(listSportsResult.asMap());
        System.out.println(listSportsResult.asString());
    }
}

Kotlin Example:

Code:
object KotlinDemoApp {
    @JvmStatic
    fun main(args: Array<String>) {
        val searchTeamResult = SearchTeamClientImpl().byShortCode("Arsenal")
        println(searchTeamResult.asString())
        println(searchTeamResult.asMap())

        val listSportsResult = ListSportsClientImpl().all()
        println(listSportsResult.asString())
        println(listSportsResult.asMap())
    }
}

Print this item

  Javascript Library - theSportsDB (gpsanant)
Posted by: TheSportsDBFan - 08-20-2024, 08:58 AM - Forum: Presentation of your projects - No Replies

Javascript Library to connect to the api of https://thesportsdb.com/ 

Download: Github: https://github.com/gpsanant/theSportsDB
Developer: Gautham Anant
Github Profile: https://github.com/gpsanant
Contact: gpsanant@gmail.com

Example usage:

Code:
const theSportsDB = require('thesportsdb');
(async() => {
    theSportsDB.setApiKey(808) //defaults to 1, set for Patreon
    //works with space, underscores, or "%20"s
    var goat = await theSportsDB.getPlayerByName("michael jordan")
    var kobe = await theSportsDB.getPlayerByName("kobe_bryant")
    //replace unused parameters with null
    var events = await theSportsDB.getEventsOnDay("2014-10-10", null, "Australian_A-League")
    //ids can be either numbers or strings
    var nextEvents = await theSportsDB.getNext5EventsByTeamId(133602)
})()

Print this item

Lightbulb Our Rest Api Tool
Posted by: TheSportsDBFan - 08-20-2024, 08:44 AM - Forum: Developing - TheSportsDB.com - No Replies

Our Rest Api Tool: (Your Api Key is save)


If you have any questions, contact us in Discord: TheDataDB
Full Version: API Tester

=> This article is for documentation!
=> Support - You are welcome to ask questions here: https://tsdb.club/Thread-Support-Our-Rest-Api-Tool

Print this item

Question Please read this post first if you create your first project
Posted by: TheSportsDBFan - 08-19-2024, 06:28 PM - Forum: Developing - TheSportsDB.com - No Replies

I want to create a collection here to make it easier for beginners.

  • Help us: create more pages, or send me information for this section!



Use a Library/SDK/Module if exists, you can look into our: Presentation of your projects



And here you can find more information about the API and its data:



Publications by providers:



Notes DMCA:


You can ask question about development here: Developing - TheSportsDB.com

I wish you much success, we will be happy to help you!

Print this item

Information Please read this post first!
Posted by: TheSportsDBFan - 08-19-2024, 06:09 PM - Forum: Support - Projects that use data from TheSportsDB.com - No Replies

All support is voluntary, we will try to solve problems with you even if we are not responsible for them. 
That's why you should always be friendly and help the community yourself if you can!

1 Rule:

Some developers offer support for projects in this forum, then these topics are marked with (from author).
If there is a thread for the project, please post your issue there. 
This means that each developer only has to monitor one topic.

If you can't find anyone, you can simply create a new thread for each problem. (get support from tsdb.club community)

But you can also check if the developer has presented his project and if contact details are available there: Presentation of your projects

Print this item

  Support - The Sports Database Python for Kodi (from author)
Posted by: TheSportsDBFan - 08-19-2024, 05:53 PM - Forum: Support - Projects that use data from TheSportsDB.com - Replies (1)

Placeholder
metadata.thesportsdb.python

Print this item

Latest Download Submissions Go to All Downloads
Web - My Sports Handbook (g36mitchell) - Submitted by TheSportsDBFan
Submit Date: 08-22-2024, 08:30 PM | Category: Tools and Scripts
PlexSportScanner (Project-Plex) V.0.9.1 - Submitted by TheSportsDBFan
Submit Date: 08-21-2024, 09:54 PM | Category: Plex Plugins
The Sports Database Python- metadata.thesportsdb.python V.1.1.7 - Submitted by TheSportsDBFan
Submit Date: 08-21-2024, 09:16 PM | Category: Kodi Addons
PHP TSDB TV-Guide (Vilhao) - Submitted by TheSportsDBFan
Submit Date: 08-20-2024, 08:53 PM | Category: Tools and Scripts
Texturecache.py V.1.0.0 - Submitted by TheSportsDBFan
Submit Date: 08-16-2024, 10:15 PM | Category: Tools and Scripts