| Welcome, Guest |
You have to register before you can post on our site.
|
| 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!
|
|
|
| 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())
}
}
|
|
|
| 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)
})()
|
|
|
|