quotes
Fetch well known quotes from more than 500 movies.
/api/v1/quotes
Usage and SDK Samples
curl -X GET -H "apieco-key: [[apiKey]]" "https://api.apieco.ir/movie-quotes1/api/v1/quotes?year=&actor=&text=&character=&category="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.MovieQuotes_Api;
import java.io.File;
import java.util.*;
public class MovieQuotes_ApiExample {
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");
MovieQuotes_Api apiInstance = new MovieQuotes_Api();
String apiecoKey = apiecoKey_example; // String |
String year = year_example; // String | Filter quotes by year or years.
String actor = actor_example; // String |
String text = text_example; // String |
String character = character_example; // String |
String category = category_example; // String | E.g.: "action", "crime", "drama", etc.
try {
inline_response_200 result = apiInstance.quotes(apiecoKey, year, actor, text, character, category);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling MovieQuotes_Api#quotes");
e.printStackTrace();
}
}
}
import io.swagger.client.api.MovieQuotes_Api;
public class MovieQuotes_ApiExample {
public static void main(String[] args) {
MovieQuotes_Api apiInstance = new MovieQuotes_Api();
String apiecoKey = apiecoKey_example; // String |
String year = year_example; // String | Filter quotes by year or years.
String actor = actor_example; // String |
String text = text_example; // String |
String character = character_example; // String |
String category = category_example; // String | E.g.: "action", "crime", "drama", etc.
try {
inline_response_200 result = apiInstance.quotes(apiecoKey, year, actor, text, character, category);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling MovieQuotes_Api#quotes");
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 *year = year_example; // Filter quotes by year or years. (optional)
String *actor = actor_example; // (optional)
String *text = text_example; // (optional)
String *character = character_example; // (optional)
String *category = category_example; // E.g.: "action", "crime", "drama", etc. (optional)
MovieQuotes_Api *apiInstance = [[MovieQuotes_Api alloc] init];
[apiInstance quotesWith:apiecoKey
year:year
actor:actor
text:text
character:character
category:category
completionHandler: ^(inline_response_200 output, NSError* error) {
if (output) {
NSLog(@"%@", output);
}
if (error) {
NSLog(@"Error: %@", error);
}
}];
var MovieQuotesApiDocumentation = require('movie_quotes_api_documentation');
var defaultClient = MovieQuotesApiDocumentation.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 MovieQuotesApiDocumentation.MovieQuotes_Api()
var apiecoKey = apiecoKey_example; // {String}
var opts = {
'year': year_example, // {String} Filter quotes by year or years.
'actor': actor_example, // {String}
'text': text_example, // {String}
'character': character_example, // {String}
'category': category_example // {String} E.g.: "action", "crime", "drama", etc.
};
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
api.quotes(apiecoKey, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;
namespace Example
{
public class quotesExample
{
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 MovieQuotes_Api();
var apiecoKey = apiecoKey_example; // String |
var year = year_example; // String | Filter quotes by year or years. (optional)
var actor = actor_example; // String | (optional)
var text = text_example; // String | (optional)
var character = character_example; // String | (optional)
var category = category_example; // String | E.g.: "action", "crime", "drama", etc. (optional)
try
{
inline_response_200 result = apiInstance.quotes(apiecoKey, year, actor, text, character, category);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling MovieQuotes_Api.quotes: " + 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\MovieQuotes_Api();
$apiecoKey = apiecoKey_example; // String |
$year = year_example; // String | Filter quotes by year or years.
$actor = actor_example; // String |
$text = text_example; // String |
$character = character_example; // String |
$category = category_example; // String | E.g.: "action", "crime", "drama", etc.
try {
$result = $api_instance->quotes($apiecoKey, $year, $actor, $text, $character, $category);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling MovieQuotes_Api->quotes: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::MovieQuotes_Api;
# 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::MovieQuotes_Api->new();
my $apiecoKey = apiecoKey_example; # String |
my $year = year_example; # String | Filter quotes by year or years.
my $actor = actor_example; # String |
my $text = text_example; # String |
my $character = character_example; # String |
my $category = category_example; # String | E.g.: "action", "crime", "drama", etc.
eval {
my $result = $api_instance->quotes(apiecoKey => $apiecoKey, year => $year, actor => $actor, text => $text, character => $character, category => $category);
print Dumper($result);
};
if ($@) {
warn "Exception when calling MovieQuotes_Api->quotes: $@\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.MovieQuotes_Api()
apiecoKey = apiecoKey_example # String |
year = year_example # String | Filter quotes by year or years. (optional)
actor = actor_example # String | (optional)
text = text_example # String | (optional)
character = character_example # String | (optional)
category = category_example # String | E.g.: "action", "crime", "drama", etc. (optional)
try:
api_response = api_instance.quotes(apiecoKey, year=year, actor=actor, text=text, character=character, category=category)
pprint(api_response)
except ApiException as e:
print("Exception when calling MovieQuotes_Api->quotes: %s\n" % e)
Parameters
Header parameters
Name | Description |
---|---|
apieco-key* |
String
Required
|
Query parameters
Name | Description |
---|---|
year |
String
Filter quotes by year or years.
|
actor |
String
|
text |
String
|
character |
String
|
category |
String
E.g.: "action", "crime", "drama", etc.
|