# Images

## Team Image

> \### Get Team Image\
> \
> This endpoint retrieves the image associated with a specific football team identified by its unique ID.\
> \
> \#### Request Parameters\
> \
> \- \`id\` (path parameter): The unique identifier of the team whose image is to be fetched. This parameter is required.\
> &#x20;   \
> \
> This endpoint is useful for applications that need to display team images dynamically based on user selection or other criteria.

```json
{"openapi":"3.0.0","info":{"title":"FOOTBALL API V1","version":"1.0.0"},"tags":[{"name":"Images"}],"servers":[{"url":"https://apiv3.sportsapi360.com"}],"security":[{"apikeyAuth":[]}],"components":{"securitySchemes":{"apikeyAuth":{"type":"http","scheme":"x-api-key"}}},"paths":{"/football/api/v1/image/team/{id}":{"get":{"tags":["Images"],"summary":"Team Image","description":"### Get Team Image\n\nThis endpoint retrieves the image associated with a specific football team identified by its unique ID.\n\n#### Request Parameters\n\n- `id` (path parameter): The unique identifier of the team whose image is to be fetched. This parameter is required.\n    \n\nThis endpoint is useful for applications that need to display team images dynamically based on user selection or other criteria.","parameters":[{"name":"x-api-key","in":"header","schema":{"type":"string"}},{"name":"id","in":"path","schema":{"type":"integer"},"required":true}],"responses":{"200":{"description":"Successful response","content":{"application/json":{}}}}}}}}
```

## Player Image

> \## Get Player Image\
> \
> This endpoint retrieves the image associated with a specific player identified by their unique ID.\
> \
> \### Request Parameters\
> \
> \- \`id\` (path parameter): The unique identifier of the player whose image is being requested. This parameter is required.\
> &#x20;   \
> \
> On a successful request, the response will include the player's image in a format suitable for display.\
> \
> \### Notes\
> \
> \- Ensure that the player ID provided is valid and corresponds to an existing player in the system.\
> &#x20;   \
> \- The response will return a 200 status code on success, and appropriate error codes for invalid requests or if the player is not found.

```json
{"openapi":"3.0.0","info":{"title":"FOOTBALL API V1","version":"1.0.0"},"tags":[{"name":"Images"}],"servers":[{"url":"https://apiv3.sportsapi360.com"}],"security":[{"apikeyAuth":[]}],"components":{"securitySchemes":{"apikeyAuth":{"type":"http","scheme":"x-api-key"}}},"paths":{"/football/api/v1/image/player/{id}":{"get":{"tags":["Images"],"summary":"Player Image","description":"## Get Player Image\n\nThis endpoint retrieves the image associated with a specific player identified by their unique ID.\n\n### Request Parameters\n\n- `id` (path parameter): The unique identifier of the player whose image is being requested. This parameter is required.\n    \n\nOn a successful request, the response will include the player's image in a format suitable for display.\n\n### Notes\n\n- Ensure that the player ID provided is valid and corresponds to an existing player in the system.\n    \n- The response will return a 200 status code on success, and appropriate error codes for invalid requests or if the player is not found.","parameters":[{"name":"x-api-key","in":"header","schema":{"type":"string"}},{"name":"id","in":"path","schema":{"type":"integer"},"required":true}],"responses":{"200":{"description":"Successful response","content":{"application/json":{}}}}}}}}
```

## Manager Image

> \## Get Manager Image\
> \
> This endpoint retrieves the image associated with a specific football manager identified by their unique ID.\
> \
> \### Request\
> \
> \- \*\*Method\*\*: GET\
> &#x20;   \
> \- \*\*Endpoint\*\*: \`<https://apiv3.sportsapi360.com/football/api/v1/image/manager/:id\\`\\>
> &#x20;   \
> \- \*\*Path Parameter\*\*:\
> &#x20;   \
> &#x20;   \- \`id\` (string): The unique identifier of the football manager whose image is to be fetched.\
> &#x20;       \
> \
> \### Response\
> \
> The response will contain the image data of the specified manager. The expected format is an image file, which may vary based on the manager's image type (e.g., JPEG, PNG).\
> \
> The response will return the image file directly in the body of the response.

```json
{"openapi":"3.0.0","info":{"title":"FOOTBALL API V1","version":"1.0.0"},"tags":[{"name":"Images"}],"servers":[{"url":"https://apiv3.sportsapi360.com"}],"security":[{"apikeyAuth":[]}],"components":{"securitySchemes":{"apikeyAuth":{"type":"http","scheme":"x-api-key"}}},"paths":{"/football/api/v1/image/manager/{id}":{"get":{"tags":["Images"],"summary":"Manager Image","description":"## Get Manager Image\n\nThis endpoint retrieves the image associated with a specific football manager identified by their unique ID.\n\n### Request\n\n- **Method**: GET\n    \n- **Endpoint**: `https://apiv3.sportsapi360.com/football/api/v1/image/manager/:id`\n    \n- **Path Parameter**:\n    \n    - `id` (string): The unique identifier of the football manager whose image is to be fetched.\n        \n\n### Response\n\nThe response will contain the image data of the specified manager. The expected format is an image file, which may vary based on the manager's image type (e.g., JPEG, PNG).\n\nThe response will return the image file directly in the body of the response.","parameters":[{"name":"x-api-key","in":"header","schema":{"type":"string"}},{"name":"id","in":"path","schema":{"type":"integer"},"required":true}],"responses":{"200":{"description":"Successful response","content":{"application/json":{}}}}}}}}
```

## Flag Image

> \## Get Country Flag Image\
> \
> This endpoint retrieves the flag image of a specified country.\
> \
> \### Request\
> \
> \- \*\*Method:\*\* GET\
> &#x20;   \
> \- \*\*Endpoint:\*\* \`<https://apiv3.sportsapi360.com/football/api/v1/image/flags/:name\\`\\>
> &#x20;   \
> \
> \### Parameters\
> \
> \- \*\*Path Parameter:\*\*\
> &#x20;   \
> &#x20;   \- \`name\` (string): The name of the country whose flag image is to be retrieved. This should be the official name of the country.\
> &#x20;       \
> \
> \### Response\
> \
> The response will be in image format (typically PNG or JPEG) representing the flag of the specified country. The content type of the response will be \`image/png\` or \`image/jpeg\` depending on the format of the flag image.\
> \
> \### Example\
> \
> \- \*\*Request:\*\* \`GET <https://apiv3.sportsapi360.com/football/api/v1/image/flags/France\\`\\>
> &#x20;   \
> \- \*\*Response:\*\* An image of the French flag.

```json
{"openapi":"3.0.0","info":{"title":"FOOTBALL API V1","version":"1.0.0"},"tags":[{"name":"Images"}],"servers":[{"url":"https://apiv3.sportsapi360.com"}],"security":[{"apikeyAuth":[]}],"components":{"securitySchemes":{"apikeyAuth":{"type":"http","scheme":"x-api-key"}}},"paths":{"/football/api/v1/image/flags/{name}":{"get":{"tags":["Images"],"summary":"Flag Image","description":"## Get Country Flag Image\n\nThis endpoint retrieves the flag image of a specified country.\n\n### Request\n\n- **Method:** GET\n    \n- **Endpoint:** `https://apiv3.sportsapi360.com/football/api/v1/image/flags/:name`\n    \n\n### Parameters\n\n- **Path Parameter:**\n    \n    - `name` (string): The name of the country whose flag image is to be retrieved. This should be the official name of the country.\n        \n\n### Response\n\nThe response will be in image format (typically PNG or JPEG) representing the flag of the specified country. The content type of the response will be `image/png` or `image/jpeg` depending on the format of the flag image.\n\n### Example\n\n- **Request:** `GET https://apiv3.sportsapi360.com/football/api/v1/image/flags/France`\n    \n- **Response:** An image of the French flag.","parameters":[{"name":"x-api-key","in":"header","schema":{"type":"string"}},{"name":"name","in":"path","schema":{"type":"string"},"required":true}],"responses":{"200":{"description":"Successful response","content":{"application/json":{}}}}}}}}
```

## Tournament Image

> \## Endpoint Description\
> \
> This endpoint retrieves an image associated with a specific tournament based on the provided unique identifier and an optional theme.\
> \
> \### Request\
> \
> \- \*\*Method\*\*: GET\
> &#x20;   \
> \- \*\*URL\*\*: \`<https://apiv3.sportsapi360.com/football/api/v1/image/tournament/unique/:id/:theme?\\`\\>
> &#x20;   \
> \
> \#### Path Parameters\
> \
> \- \`:id\` (string, required): The unique identifier for the tournament. This parameter is essential to specify which tournament's image is being requested.\
> &#x20;   \
> \- \`:theme\` (string, optional): An optional parameter that allows the user to specify a theme for the image. If provided, the response will return an image that aligns with the specified theme.\
> &#x20;   \
> \
> This endpoint is useful for applications that need to display tournament images dynamically based on user selections or preferences.

```json
{"openapi":"3.0.0","info":{"title":"FOOTBALL API V1","version":"1.0.0"},"tags":[{"name":"Images"}],"servers":[{"url":"https://apiv3.sportsapi360.com"}],"security":[{"apikeyAuth":[]}],"components":{"securitySchemes":{"apikeyAuth":{"type":"http","scheme":"x-api-key"}}},"paths":{"/football/api/v1/image/tournament/unique/{id}/{theme}":{"get":{"tags":["Images"],"summary":"Tournament Image","description":"## Endpoint Description\n\nThis endpoint retrieves an image associated with a specific tournament based on the provided unique identifier and an optional theme.\n\n### Request\n\n- **Method**: GET\n    \n- **URL**: `https://apiv3.sportsapi360.com/football/api/v1/image/tournament/unique/:id/:theme?`\n    \n\n#### Path Parameters\n\n- `:id` (string, required): The unique identifier for the tournament. This parameter is essential to specify which tournament's image is being requested.\n    \n- `:theme` (string, optional): An optional parameter that allows the user to specify a theme for the image. If provided, the response will return an image that aligns with the specified theme.\n    \n\nThis endpoint is useful for applications that need to display tournament images dynamically based on user selections or preferences.","parameters":[{"name":"x-api-key","in":"header","schema":{"type":"string"}},{"name":"id","in":"path","schema":{"type":"integer"},"required":true},{"name":"theme","in":"path","schema":{"type":"string"},"required":true,"description":"dark or light"}],"responses":{"200":{"description":"Successful response","content":{"application/json":{}}}}}}}}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docsv3.sportsapi360.com/football-docs/api-collection-football/images.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
