2025 | 2015 | 2005 |
2024 | 2014 | 2004 |
2023 | 2013 | 2003 |
2022 | 2012 | 2002 |
2021 | 2011 | 2001 |
2020 | 2010 | |
2019 | 2009 | |
2018 | 2008 | |
2017 | 2007 | |
2016 | 2006 |
2024-25 | 2014-15 | 2004-05 |
2023-24 | 2013-14 | 2003-04 |
2022-23 | 2012-13 | 2002-03 |
2021-22 | 2011-12 | |
2020-21 | 2010-11 | |
2019-20 | 2009-10 | |
2018-19 | 2008-09 | |
2017-18 | 2007-08 | |
2016-17 | 2006-07 | |
2015-16 | 2005-06 |
Basic |
Current season |
100 requests/day |
€25,00 monthly |
|
Extra |
Current season |
1.000 requests/day |
€95,00 monthly |
|
Premium |
All |
10.000 requests/day |
€575,00 monthly |
The monthly subscription can be canceled at any time through your Stripe account or sending an mail to [email protected] specifying your username or email.
If you prefer a custom budget, please contact us by mail at [email protected] or with the contact form
The base url of the API is https://photoapi.bdfutbol.com
All API requests require authentication via a bearer token. To obtain a token, you must log in using the /login
endpoint.
POST /login
Request Body:
{ "email": "[email protected]", "password": "password123" }
Response:
{ "message": "Login successful", "token": "token" }
Once authenticated, include the token in the Authorization
header of your requests:
Authorization: Bearer token
The /photos
endpoint allows retrieving player photos using different search parameters. Depending on the specificity of the provided parameters, the response may either return a single photo file or a list of candidate photos.
You can request a photo in the following ways:
photoId
. You can use this ID to make another request for a specific photo.POST /photos
Request Body:
{ "personId": "123", "name": "Messi", "season": "2023-24", "team": "Barcelona", "teamId": "1", "number": "10", "photoId": "9876" }
If a unique match is found, the API responds with the photo file directly.
[Binary Photo File]
If multiple matches are found, the response will contain a list of possible photos:
{ "photos": [ { "photoId": "9876", "season": "2023-24", "team": "Barcelona" } ] }
Use the photoId
from the response to make another request to obtain a specific photo.
Authorization
token is included in the header for all requests.200 OK
– Request successful400 Bad Request
– Invalid request parameters401 Unauthorized
– Missing or invalid token404 Not Found
– No matching photo found500 Internal Server Error
– Unexpected error