achievments
Achievement data for specific games for specific platforms (currently limited to acheivements from steam, playstation and Xbox)
/achievements
Usage and SDK Samples
curl -X GET -H "apieco-key: [[apiKey]]" "https://api.apieco.ir/igdb/achievements?achievement_icon=&category=&created_at=&description=&game=&external_id=&language="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AchievmentsApi;
import java.io.File;
import java.util.*;
public class AchievmentsApiExample {
public static void main(String[] args) {
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure API key authorization: apieco-key
ApiKeyAuth apieco-key = (ApiKeyAuth) defaultClient.getAuthentication("apieco-key");
apieco-key.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//apieco-key.setApiKeyPrefix("Token");
AchievmentsApi apiInstance = new AchievmentsApi();
String apiecoKey = apiecoKey_example; // String |
String achievementIcon = achievementIcon_example; // String | The icon of a specific achievement
String category = category_example; // String | The platform that a specific achievement belongs to
String createdAt = createdAt_example; // String | Date this was initially added to the IGDB database
String description = description_example; // String | The text explaining how to unlock an achievement
String game = game_example; // String | The ID of the game an achievement is connected to
String externalId = externalId_example; // String | The ID given to the achievement by the external service
String language = language_example; // String | The ID of a region
try {
array[inline_response_200] result = apiInstance.achievments(apiecoKey, achievementIcon, category, createdAt, description, game, externalId, language);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling AchievmentsApi#achievments");
e.printStackTrace();
}
}
}
import io.swagger.client.api.AchievmentsApi;
public class AchievmentsApiExample {
public static void main(String[] args) {
AchievmentsApi apiInstance = new AchievmentsApi();
String apiecoKey = apiecoKey_example; // String |
String achievementIcon = achievementIcon_example; // String | The icon of a specific achievement
String category = category_example; // String | The platform that a specific achievement belongs to
String createdAt = createdAt_example; // String | Date this was initially added to the IGDB database
String description = description_example; // String | The text explaining how to unlock an achievement
String game = game_example; // String | The ID of the game an achievement is connected to
String externalId = externalId_example; // String | The ID given to the achievement by the external service
String language = language_example; // String | The ID of a region
try {
array[inline_response_200] result = apiInstance.achievments(apiecoKey, achievementIcon, category, createdAt, description, game, externalId, language);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling AchievmentsApi#achievments");
e.printStackTrace();
}
}
}
Configuration *apiConfig = [Configuration sharedConfig];
// Configure API key authorization: (authentication scheme: apieco-key)
[apiConfig setApiKey:@"YOUR_API_KEY" forApiKeyIdentifier:@"apieco-key"];
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//[apiConfig setApiKeyPrefix:@"Bearer" forApiKeyIdentifier:@"apieco-key"];
String *apiecoKey = apiecoKey_example; //
String *achievementIcon = achievementIcon_example; // The icon of a specific achievement (optional)
String *category = category_example; // The platform that a specific achievement belongs to (optional)
String *createdAt = createdAt_example; // Date this was initially added to the IGDB database (optional)
String *description = description_example; // The text explaining how to unlock an achievement (optional)
String *game = game_example; // The ID of the game an achievement is connected to (optional)
String *externalId = externalId_example; // The ID given to the achievement by the external service (optional)
String *language = language_example; // The ID of a region (optional)
AchievmentsApi *apiInstance = [[AchievmentsApi alloc] init];
[apiInstance achievmentsWith:apiecoKey
achievementIcon:achievementIcon
category:category
createdAt:createdAt
description:description
game:game
externalId:externalId
language:language
completionHandler: ^(array[inline_response_200] output, NSError* error) {
if (output) {
NSLog(@"%@", output);
}
if (error) {
NSLog(@"Error: %@", error);
}
}];
var IgdbApi = require('igdb_api');
var defaultClient = IgdbApi.ApiClient.instance;
// Configure API key authorization: apieco-key
var apieco-key = defaultClient.authentications['apieco-key'];
apieco-key.apiKey = "YOUR API KEY"
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//apieco-key.apiKeyPrefix['apieco-key'] = "Token"
var api = new IgdbApi.AchievmentsApi()
var apiecoKey = apiecoKey_example; // {String}
var opts = {
'achievementIcon': achievementIcon_example, // {String} The icon of a specific achievement
'category': category_example, // {String} The platform that a specific achievement belongs to
'createdAt': createdAt_example, // {String} Date this was initially added to the IGDB database
'description': description_example, // {String} The text explaining how to unlock an achievement
'game': game_example, // {String} The ID of the game an achievement is connected to
'externalId': externalId_example, // {String} The ID given to the achievement by the external service
'language': language_example // {String} The ID of a region
};
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
api.achievments(apiecoKey, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;
namespace Example
{
public class achievmentsExample
{
public void main()
{
// Configure API key authorization: apieco-key
Configuration.Default.ApiKey.Add("apieco-key", "YOUR_API_KEY");
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Configuration.Default.ApiKeyPrefix.Add("apieco-key", "Bearer");
var apiInstance = new AchievmentsApi();
var apiecoKey = apiecoKey_example; // String |
var achievementIcon = achievementIcon_example; // String | The icon of a specific achievement (optional)
var category = category_example; // String | The platform that a specific achievement belongs to (optional)
var createdAt = createdAt_example; // String | Date this was initially added to the IGDB database (optional)
var description = description_example; // String | The text explaining how to unlock an achievement (optional)
var game = game_example; // String | The ID of the game an achievement is connected to (optional)
var externalId = externalId_example; // String | The ID given to the achievement by the external service (optional)
var language = language_example; // String | The ID of a region (optional)
try
{
array[inline_response_200] result = apiInstance.achievments(apiecoKey, achievementIcon, category, createdAt, description, game, externalId, language);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling AchievmentsApi.achievments: " + e.Message );
}
}
}
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: apieco-key
Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('apieco-key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Swagger\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('apieco-key', 'Bearer');
$api_instance = new Swagger\Client\Api\AchievmentsApi();
$apiecoKey = apiecoKey_example; // String |
$achievementIcon = achievementIcon_example; // String | The icon of a specific achievement
$category = category_example; // String | The platform that a specific achievement belongs to
$createdAt = createdAt_example; // String | Date this was initially added to the IGDB database
$description = description_example; // String | The text explaining how to unlock an achievement
$game = game_example; // String | The ID of the game an achievement is connected to
$externalId = externalId_example; // String | The ID given to the achievement by the external service
$language = language_example; // String | The ID of a region
try {
$result = $api_instance->achievments($apiecoKey, $achievementIcon, $category, $createdAt, $description, $game, $externalId, $language);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling AchievmentsApi->achievments: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::AchievmentsApi;
# Configure API key authorization: apieco-key
$WWW::SwaggerClient::Configuration::api_key->{'apieco-key'} = 'YOUR_API_KEY';
# uncomment below to setup prefix (e.g. Bearer) for API key, if needed
#$WWW::SwaggerClient::Configuration::api_key_prefix->{'apieco-key'} = "Bearer";
my $api_instance = WWW::SwaggerClient::AchievmentsApi->new();
my $apiecoKey = apiecoKey_example; # String |
my $achievementIcon = achievementIcon_example; # String | The icon of a specific achievement
my $category = category_example; # String | The platform that a specific achievement belongs to
my $createdAt = createdAt_example; # String | Date this was initially added to the IGDB database
my $description = description_example; # String | The text explaining how to unlock an achievement
my $game = game_example; # String | The ID of the game an achievement is connected to
my $externalId = externalId_example; # String | The ID given to the achievement by the external service
my $language = language_example; # String | The ID of a region
eval {
my $result = $api_instance->achievments(apiecoKey => $apiecoKey, achievementIcon => $achievementIcon, category => $category, createdAt => $createdAt, description => $description, game => $game, externalId => $externalId, language => $language);
print Dumper($result);
};
if ($@) {
warn "Exception when calling AchievmentsApi->achievments: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint
# Configure API key authorization: apieco-key
swagger_client.configuration.api_key['apieco-key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# swagger_client.configuration.api_key_prefix['apieco-key'] = 'Bearer'
# create an instance of the API class
api_instance = swagger_client.AchievmentsApi()
apiecoKey = apiecoKey_example # String |
achievementIcon = achievementIcon_example # String | The icon of a specific achievement (optional)
category = category_example # String | The platform that a specific achievement belongs to (optional)
createdAt = createdAt_example # String | Date this was initially added to the IGDB database (optional)
description = description_example # String | The text explaining how to unlock an achievement (optional)
game = game_example # String | The ID of the game an achievement is connected to (optional)
externalId = externalId_example # String | The ID given to the achievement by the external service (optional)
language = language_example # String | The ID of a region (optional)
try:
api_response = api_instance.achievments(apiecoKey, achievementIcon=achievementIcon, category=category, createdAt=createdAt, description=description, game=game, externalId=externalId, language=language)
pprint(api_response)
except ApiException as e:
print("Exception when calling AchievmentsApi->achievments: %s\n" % e)
Parameters
Name | Description |
---|---|
apieco-key* |
String
Required
|
Name | Description |
---|---|
achievement_icon |
String
The icon of a specific achievement
|
category |
String
The platform that a specific achievement belongs to
|
created_at |
String
Date this was initially added to the IGDB database
|
description |
String
The text explaining how to unlock an achievement
|
game |
String
The ID of the game an achievement is connected to
|
external_id |
String
The ID given to the achievement by the external service
|
language |
String
The ID of a region
|