listsGet
Get all colors of the default color name list
Returns a list of available color name lists with descriptions and URLs to the color list endpoints.
/lists/
Usage and SDK Samples
curl -X GET \
-H "Accept: application/json" \
"https://api.color.pizza/v1/lists/"
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.DefaultApi;
import java.io.File;
import java.util.*;
public class DefaultApiExample {
public static void main(String[] args) {
// Create an instance of the API class
DefaultApi apiInstance = new DefaultApi();
try {
_lists__get_200_response result = apiInstance.listsGet();
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling DefaultApi#listsGet");
e.printStackTrace();
}
}
}
import org.openapitools.client.api.DefaultApi;
public class DefaultApiExample {
public static void main(String[] args) {
DefaultApi apiInstance = new DefaultApi();
try {
_lists__get_200_response result = apiInstance.listsGet();
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling DefaultApi#listsGet");
e.printStackTrace();
}
}
}
// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
// Get all colors of the default color name list
[apiInstance listsGetWithCompletionHandler:
^(_lists__get_200_response output, NSError* error) {
if (output) {
NSLog(@"%@", output);
}
if (error) {
NSLog(@"Error: %@", error);
}
}];
var ColorNameApi = require('color_name_api');
// Create an instance of the API class
var api = new ColorNameApi.DefaultApi()
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
api.listsGet(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;
namespace Example
{
public class listsGetExample
{
public void main()
{
// Create an instance of the API class
var apiInstance = new DefaultApi();
try {
// Get all colors of the default color name list
_lists__get_200_response result = apiInstance.listsGet();
Debug.WriteLine(result);
} catch (Exception e) {
Debug.Print("Exception when calling DefaultApi.listsGet: " + e.Message );
}
}
}
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
try {
$result = $api_instance->listsGet();
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->listsGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;
# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
eval {
my $result = $api_instance->listsGet();
print Dumper($result);
};
if ($@) {
warn "Exception when calling DefaultApi->listsGet: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint
# Create an instance of the API class
api_instance = openapi_client.DefaultApi()
try:
# Get all colors of the default color name list
api_response = api_instance.lists_get()
pprint(api_response)
except ApiException as e:
print("Exception when calling DefaultApi->listsGet: %s\n" % e)
extern crate DefaultApi;
pub fn main() {
let mut context = DefaultApi::Context::default();
let result = client.listsGet(&context).wait();
println!("{:?}", result);
}