Fonts: List Fonts

Collapse All

URL

http://api.fonts.com/rest/{format}/AllFonts/

{format}

xml or json

Method

GET

Required Header Parameters

  • authorizationHashed authorization key
  • appkeyYour application’s key

Required Query String Parameters

  • None

Optional Query String Parameters

  • wfsClassIdId of classification
  • wfsDesignerIdId of designer
  • wfsFountryIdId of foundry
  • wfsLangIdId of language
  • wfsAlphabetInitials of alphabets (‘all’ or ‘a’ or ‘b’…or ‘z’)
  • wfsfreeShow all or free fonts only (true or false)
  • wfsKeyword Keyword to be searched by
  • wfsFamilyGrouping Option to list fonts grouping by family (true or false)
  • wfspstartstarting record requested (zero-based)
  • wfsplimit# of records requested

Response variables

  • MessageIf the response is successful then the “message” parameter of the response will be “Success” and if there is some error or failure then the “message” parameter will be the error message.
  • FontFamilyIDIdentifier of the font family.
  • FontFamilyNameFont family name.
  • DisplayFontIdFont Id to display at family level
  • Font: FontIDIdentifier of the font. Every font in the Fonts.com Web Fonts service has a unique FontID.
  • Font: FontNameDisplay name of the font.
  • Font: FontPreviewTextLongThe long text string used to show the appearance of the font.
  • Font: FontFoundryNameThe name of font designer or company.
  • Font: FontCSSNameThe font-family name of the font.
  • Font: FontLanguageThe language supported by the font.
  • Font: FontSizeThe size of the font file.
  • Font: FontTier Resembles the font is for free or paid users
    • 0: resembles the free fonts (for all the users)
    • 1: resembles the premium fonts (only for premium users - Standard and Pro)
    • NULL (no value): resembles the private font of that particular user
  • Font: TTFURL The font’s TrueType® font file URL. TrueType fonts can be used in all major browsers except for the Microsoft Internet Explorer® browser.
  • Font: EOTURL The font’s Embedded OpenType Font file URL. EOT fonts are served exclusively to Internet Explorer browsers.
  • Font: WOFFURL The font’s Web Open Font Format file URL. It is compatible with Firefox 3.6 and up. The WOFF file format is expected to eventually be compatible with all major browsers.
  • Font: SVGURLThe font’s Scalable Vector Graphics font files URL. This format is compatible with Apple iPhone, iPad and iPod touch devices.
  • Font: EnableSubsettingIndicates that a font should be dynamically subsetted in the website. Fonts with very large characters sets such as fonts support Chinese, Japanese and Korean writing systems can also have very large file sizes. Because it may take a long time to download a large file, fonts supporting these languages will be marked as EnableSubsetted fonts. The value will be either T for true or F for False.
  • Font: DesignerThe name of the font designer
  • Font: ClassificationThe font's classification name
  • TotalGroupRecordsTotal number of font family listed (if family grouping enabled)
  • TotalFontRecordsTotal number of font listed (if family grouping enabled)
  • TotalRecordsTotal number of records (if family grouping disabled)
  • PageStartstarting record requested (zero-based)
  • PageLimit# of records requested

Sample Code

PHP

<?php

require_once('Services_WFS.php');

$services = new Services_WFS;

$apiKey = '[Your API Key]';
$publicKey = '[Your Public Key]';
$privateKey = '[Your Private Key]';
$services->setCredentials($publicKey, $privateKey, $apiKey);

$search = array('foundry' => '185289',
		'alphabet' => 'b');

var_dump($services->filterFonts($search));


?>         

C#

    private string ListFontsInProject(string classificationid, string designerid, string founryid, string languageid, string alphabet, string free, string keyword, string familyGrouping, int pageStart = 0 , int pageLimit = 10)
    {

      const string method = "GET";
      string requestUri = "/rest/" + Format + "/AllFonts/" + 
                          "?wfsClassId=" + classificationid + 
                          "&wfsDesignerId=" + designerid + 
                          "&wfsFountrdyId=" + founryid + 
                          "&wfsLangId=" + languageid + 
                          "&wfsAlphabet=" + alphabet + 
                          "&wfsfree=" + free + 
                          "&wfsKeyword=" + keyword + 
                          "&wfsFamilyGrouping=" + familyGrouping +
                          "&wfspstart=" + pageStart + 
                          "&wfsplimit=" + pageLimit;


      //See common functions for GetResponse
      return GetResponse(method, requestUri);

    }       

VB.NET

  Private Function ListFontsInProject(ByVal classificationid As String, ByVal designerid As String, ByVal founryid As String,
                                      ByVal languageid As String, ByVal alphabet As String, ByVal free As String, ByVal keyword As String,
                                      ByVal familyGrouping As String, Optional ByVal pageStart As Integer = 0, Optional pageLimit As Integer = 10) As String

    Const method As String = "GET"
    Dim requestUri As String = "/rest/" & Format & "/AllFonts/" & _
                               "?wfsClassId=" & classificationid & _
                               "&wfsDesignerId=" & designerid & _
                               "&wfsFountrdyId=" & founryid & _
                               "&wfsLangId=" & languageid & _
                               "&wfsAlphabet=" & alphabet & _
                               "&wfsfree=" & free & _
                               "&wfsKeyword=" & keyword & _
                               "&wfsFamilyGrouping=" & familyGrouping & _
                               "&wfspstart=" & pageStart & _
                               "&wfsplimit=" & pageLimit


    'See common functions for GetResponse
    Return GetResponse(method, requestUri)

  End Function       

XML Response (without family grouping i.e. wfsFamilyGrouping set false)

<AllFonts>
  <Message>Success</Message>
  <Font>
    <FontID>709857</FontID>
    <FontName>Helveticar Black</FontName>
    <FontPreviewTextLong>Quick Brown Fox Jumped Over The Lazy Dog</FontPreviewTextLong>
    <FontFoundryName>Linotype</FontFoundryName>
    <FontCSSName>Helvetica W01 Blk</FontCSSName>
    <FontLanguage>Latin 1</FontLanguage>
    <FontSize>36232</FontSize>
    <FontTier>0</FontTier>
    <TTFURL>http://api3.fonts.com/FontSampler.ashx?fctypeId=1&amp;origId=417fbaeb-4c38-4327-a855-6b4865fcd555&amp;fcId=417fbaeb-4c38-4327-a855-6b4865fcd555&amp;fontformat=W01&amp;v=4</TTFURL>
    <EOTURL>http://api3.fonts.com/FontSampler.ashx?fctypeId=2&amp;origId=f81026f1-d541-41a9-affc-ca2a013871f4&amp;fcId=417fbaeb-4c38-4327-a855-6b4865fcd555&amp;fontformat=W01&amp;v=4</EOTURL>
    <SVGURL>http://api3.fonts.com/FontSampler.ashx?fctypeId=11&amp;origId=422289e3-fe15-4e5a-b159-45888740f8dc&amp;fcId=417fbaeb-4c38-4327-a855-6b4865fcd555&amp;fontformat=W01&amp;v=4</SVGURL>
    <WOFFURL>http://api3.fonts.com/FontSampler.ashx?fctypeId=3&amp;origId=712aac8d-557b-4a5d-bb6a-40ac69765042&amp;fcId=417fbaeb-4c38-4327-a855-6b4865fcd555&amp;fontformat=W01&amp;v=4</WOFFURL>
    <EnableSubsetting>false</EnableSubsetting>
    <Designer> Linotype Design Studio</Designer>
    <Classification>Sans Serif,Technical</Classification>
  </Font>
  <Font>
    <FontID>739479</FontID>
    <FontName>Helveticar Black</FontName>
    <FontPreviewTextLong>The quick brown fox jumps / Prílis zlutoucky</FontPreviewTextLong>
    <FontFoundryName>Linotype</FontFoundryName>
    <FontCSSName>Helvetica W02 Blk</FontCSSName>
    <FontLanguage>Latin Ext 1</FontLanguage>
    <FontSize>56596</FontSize>
    <FontTier>0</FontTier>
    <TTFURL>http://api3.fonts.com/FontSampler.ashx?fctypeId=1&amp;origId=1119736b-8e3a-4efc-a90c-c0d13e27081e&amp;fcId=1119736b-8e3a-4efc-a90c-c0d13e27081e&amp;fontformat=W02&amp;v=3</TTFURL>
    <EOTURL>http://api3.fonts.com/FontSampler.ashx?fctypeId=2&amp;origId=3607e1fa-3c64-4517-8996-d732d0c14a05&amp;fcId=1119736b-8e3a-4efc-a90c-c0d13e27081e&amp;fontformat=W02&amp;v=3</EOTURL>
    <SVGURL>http://api3.fonts.com/FontSampler.ashx?fctypeId=11&amp;origId=b5dc5e4c-b76e-490f-9699-87852910524d&amp;fcId=1119736b-8e3a-4efc-a90c-c0d13e27081e&amp;fontformat=W02&amp;v=3</SVGURL>
    <WOFFURL>http://api3.fonts.com/FontSampler.ashx?fctypeId=3&amp;origId=aa71f04c-c694-4c1b-b841-c7ca7fff868e&amp;fcId=1119736b-8e3a-4efc-a90c-c0d13e27081e&amp;fontformat=W02&amp;v=3</WOFFURL>
    <EnableSubsetting>false</EnableSubsetting>
    <Designer> Linotype Design Studio</Designer>
    <Classification>Sans Serif,Technical</Classification>
  </Font>
  <Font>
    <FontID>709866</FontID>
    <FontName>Helveticar Black Oblique</FontName>
    <FontPreviewTextLong>Quick Brown Fox Jumped Over The Lazy Dog</FontPreviewTextLong>
    <FontFoundryName>Linotype</FontFoundryName>
    <FontCSSName>Helvetica W01 Blk Obl</FontCSSName>
    <FontLanguage>Latin 1</FontLanguage>
    <FontSize>36500</FontSize>
    <FontTier>0</FontTier>
    <TTFURL>http://api3.fonts.com/FontSampler.ashx?fctypeId=1&amp;origId=7dc7721f-3e3f-4be1-9eab-74cced36e438&amp;fcId=7dc7721f-3e3f-4be1-9eab-74cced36e438&amp;fontformat=W01&amp;v=4</TTFURL>
    <EOTURL>http://api3.fonts.com/FontSampler.ashx?fctypeId=2&amp;origId=71382082-494e-41bb-abc8-e8a0fcb2374a&amp;fcId=7dc7721f-3e3f-4be1-9eab-74cced36e438&amp;fontformat=W01&amp;v=4</EOTURL>
    <SVGURL>http://api3.fonts.com/FontSampler.ashx?fctypeId=11&amp;origId=d5ab6fd7-be42-4e89-91a2-fd53fe2a7155&amp;fcId=7dc7721f-3e3f-4be1-9eab-74cced36e438&amp;fontformat=W01&amp;v=4</SVGURL>
    <WOFFURL>http://api3.fonts.com/FontSampler.ashx?fctypeId=3&amp;origId=e80cc55d-63d4-47e3-90e1-8b9a4e5e97b8&amp;fcId=7dc7721f-3e3f-4be1-9eab-74cced36e438&amp;fontformat=W01&amp;v=4</WOFFURL>
    <EnableSubsetting>false</EnableSubsetting>
    <Designer> Linotype Design Studio</Designer>
    <Classification>Sans Serif,Technical</Classification>
  </Font>
  <TotalRecords>305</TotalRecords>
  <PageStart>0</PageStart>
  <PageLimit>3</PageLimit>
</AllFonts>        

XML Response (with family grouping i.e. wfsFamilyGrouping set true)

<AllFonts>
  <Message>Success</Message>
 <FontFamily>
    <FontFamilyID>693793</FontFamilyID>
    <FontFamilyName>Aachen™</FontFamilyName>
    <DisplayFontID>691753</DisplayFontID>
    <Font>
      <FontID>691756</FontID>
      <FontName>Aachen™ Medium</FontName>
      <FontPreviewTextLong>Quick Brown Fox Jumped Over The Lazy Dog</FontPreviewTextLong>
      <FontFoundryName>ITC - International Typeface Corp.</FontFoundryName>
      <DesignFoundryID>185291</DesignFoundryID>
      <SourceFoundryID>185291</SourceFoundryID>
      <FontCSSName>Aachen W01 Medium</FontCSSName>
      <PsNames>AachenW01-Medium</PsNames>
      <FontLanguage>Latin 1</FontLanguage>
      <FontSize>14720-114578</FontSize>
      <FontTier>0</FontTier>
      <TTFURL>http://api3.fonts.com/FontSampler.ashx?fctypeId=1&origId=8b641a92-8133-4079-9e38-edaaa430babc&fcId=8b641a92-8133-4079-9e38-edaaa430babc&fontformat=W01&v=5</TTFURL>
      <EOTURL>http://api3.fonts.com/FontSampler.ashx?fctypeId=2&origId=4df8fc71-c86d-4b91-ab04-54d64066ddb4&fcId=8b641a92-8133-4079-9e38-edaaa430babc&fontformat=W01&v=5</EOTURL>
      <SVGURL>http://api3.fonts.com/FontSampler.ashx?fctypeId=11&origId=f1c655d5-fe06-4d94-97e4-6a060423131b&fcId=8b641a92-8133-4079-9e38-edaaa430babc&fontformat=W01&v=5</SVGURL>
      <WOFFURL>http://api3.fonts.com/FontSampler.ashx?fctypeId=3&origId=a3f29b0f-9d59-4f76-8c3a-286abf3927b1&fcId=8b641a92-8133-4079-9e38-edaaa430babc&fontformat=W01&v=5</WOFFURL>
      <EnableSubsetting>true</EnableSubsetting>
      <Designer>Alan Meeks,Colin Brignall</Designer>
      <DesignerIDs>524687,525194</DesignerIDs>
      <Classification>Serif</Classification>
      <ClassificationIDs>51433</ClassificationIDs>
      <OtherLanguageSupportOptions>
        <Font>
          <FontID>693796</FontID>
          <FontName>Aachen™ Medium</FontName>
          <FontPreviewTextLong>The quick brown fox jumps / Příliš žluťoučký</FontPreviewTextLong>
          <FontFoundryName>ITC - International Typeface Corp.</FontFoundryName>
          <DesignFoundryID>185291</DesignFoundryID>
          <SourceFoundryID>185291</SourceFoundryID>
          <FontCSSName>Aachen W02 Medium</FontCSSName>
          <PsNames>AachenW02-Medium</PsNames>
          <FontLanguage>Latin Ext 1</FontLanguage>
          <FontSize>17644-186347</FontSize>
          <FontTier>0</FontTier>
          <TTFURL>http://api3.fonts.com/FontSampler.ashx?fctypeId=1&origId=2979c9ec-61fe-470d-b221-f47d7797dc7d&fcId=2979c9ec-61fe-470d-b221-f47d7797dc7d&fontformat=W02&v=4</TTFURL>
          <EOTURL>http://api3.fonts.com/FontSampler.ashx?fctypeId=2&origId=0b74a022-781f-4c1a-b1c0-7b11594c051b&fcId=2979c9ec-61fe-470d-b221-f47d7797dc7d&fontformat=W02&v=4</EOTURL>
          <SVGURL>http://api3.fonts.com/FontSampler.ashx?fctypeId=11&origId=0c947b29-9a90-47bb-9c03-9e3dbfc10746&fcId=2979c9ec-61fe-470d-b221-f47d7797dc7d&fontformat=W02&v=4</SVGURL>
          <WOFFURL>http://api3.fonts.com/FontSampler.ashx?fctypeId=3&origId=44c1985d-992e-488b-a722-fa478a96532a&fcId=2979c9ec-61fe-470d-b221-f47d7797dc7d&fontformat=W02&v=4</WOFFURL>
          <EnableSubsetting>false</EnableSubsetting>
          <Designer>Colin Brignall,Alan Meeks</Designer>
          <DesignerIDs>525194,524687</DesignerIDs>
          <Classification>Serif</Classification>
          <ClassificationIDs>51433</ClassificationIDs>
        </Font>
      </OtherLanguageSupportOptions>
    </Font>
    <Font>
      <FontID>691753</FontID>
      <FontName>Aachen™ Bold</FontName>
      <FontPreviewTextLong>Quick Brown Fox Jumped Over The Lazy Dog</FontPreviewTextLong>
      <FontFoundryName>ITC - International Typeface Corp.</FontFoundryName>
      <DesignFoundryID>185291</DesignFoundryID>
      <SourceFoundryID>185291</SourceFoundryID>
      <FontCSSName>Aachen W01 Bold</FontCSSName>
      <PsNames>AachenW01-Bold</PsNames>
      <FontLanguage>Latin 1</FontLanguage>
      <FontSize>14980-117977</FontSize>
      <FontTier>0</FontTier>
      <TTFURL>http://api3.fonts.com/FontSampler.ashx?fctypeId=1&origId=89307659-78b5-46fd-b762-0c70a32f9b94&fcId=89307659-78b5-46fd-b762-0c70a32f9b94&fontformat=W01&v=5</TTFURL>
      <EOTURL>http://api3.fonts.com/FontSampler.ashx?fctypeId=2&origId=b2389136-99bf-4399-a37e-6fed79d5f961&fcId=89307659-78b5-46fd-b762-0c70a32f9b94&fontformat=W01&v=5</EOTURL>
      <SVGURL>http://api3.fonts.com/FontSampler.ashx?fctypeId=11&origId=f7be2e13-5840-4a43-b0ad-5b14b32573d6&fcId=89307659-78b5-46fd-b762-0c70a32f9b94&fontformat=W01&v=5</SVGURL>
      <WOFFURL>http://api3.fonts.com/FontSampler.ashx?fctypeId=3&origId=e915df79-1925-45ae-857c-3e9defbdc227&fcId=89307659-78b5-46fd-b762-0c70a32f9b94&fontformat=W01&v=5</WOFFURL>
      <EnableSubsetting>false</EnableSubsetting>
      <Designer>Alan Meeks,Colin Brignall</Designer>
      <DesignerIDs>524687,525194</DesignerIDs>
      <Classification>Serif</Classification>
      <ClassificationIDs>51433</ClassificationIDs>
      <OtherLanguageSupportOptions />
    </Font>
  </FontFamily>
  <FontFamily>
    <FontFamilyID>784338</FontFamilyID>
    <FontFamilyName>Aadir</FontFamilyName>
    <DisplayFontID>784344</DisplayFontID>
    <Font>
      <FontID>784344</FontID>
      <FontName>Aadir Medium</FontName>
      <FontPreviewTextLong>ולא משנה באיזו שפה</FontPreviewTextLong>
      <FontFoundryName>MasterFont</FontFoundryName>
      <DesignFoundryID>290565</DesignFoundryID>
      <SourceFoundryID>290565</SourceFoundryID>
      <FontCSSName>Aadir W26 Medium</FontCSSName>
      <PsNames>AadirW26-Medium</PsNames>
      <FontLanguage>Hebrew</FontLanguage>
      <FontSize>27828-91744</FontSize>
      <FontTier>1</FontTier>
      <TTFURL>http://api3.fonts.com/FontSampler.ashx?fctypeId=1&origId=5b70ebda-a59b-4bad-98d7-30d52f90fbf4&fcId=5b70ebda-a59b-4bad-98d7-30d52f90fbf4&fontformat=W26&v=2</TTFURL>
      <EOTURL>http://api3.fonts.com/FontSampler.ashx?fctypeId=2&origId=1b6b7a06-396a-438b-a929-8cfc864e4f78&fcId=5b70ebda-a59b-4bad-98d7-30d52f90fbf4&fontformat=W26&v=2</EOTURL>
      <SVGURL>http://api3.fonts.com/FontSampler.ashx?fctypeId=11&origId=a18a6bba-5b55-4f63-a441-73253a097e82&fcId=5b70ebda-a59b-4bad-98d7-30d52f90fbf4&fontformat=W26&v=2</SVGURL>
      <WOFFURL>http://api3.fonts.com/FontSampler.ashx?fctypeId=3&origId=8b3542b1-8e12-49ff-b233-06a46a8b2a46&fcId=5b70ebda-a59b-4bad-98d7-30d52f90fbf4&fontformat=W26&v=2</WOFFURL>
      <EnableSubsetting>false</EnableSubsetting>
      <Designer>Pini Hemo</Designer>
      <DesignerIDs>525430</DesignerIDs>
      <Classification></Classification>
      <ClassificationIDs></ClassificationIDs>
      <OtherLanguageSupportOptions />
    </Font>
    <Font>
      <FontID>784341</FontID>
      <FontName>Aadir Bold</FontName>
      <FontPreviewTextLong>ולא משנה באיזו שפה</FontPreviewTextLong>
      <FontFoundryName>MasterFont</FontFoundryName>
      <DesignFoundryID>290565</DesignFoundryID>
      <SourceFoundryID>290565</SourceFoundryID>
      <FontCSSName>Aadir W26 Bold</FontCSSName>
      <PsNames>AadirW26-Bold</PsNames>
      <FontLanguage>Hebrew</FontLanguage>
      <FontSize>28344-93665</FontSize>
      <FontTier>1</FontTier>
      <TTFURL>http://api3.fonts.com/FontSampler.ashx?fctypeId=1&origId=8945edde-9ce4-48a2-b477-93832a466bc9&fcId=8945edde-9ce4-48a2-b477-93832a466bc9&fontformat=W26&v=2</TTFURL>
      <EOTURL>http://api3.fonts.com/FontSampler.ashx?fctypeId=2&origId=9b08cf88-755f-43bc-aa51-b5294b86a0cd&fcId=8945edde-9ce4-48a2-b477-93832a466bc9&fontformat=W26&v=2</EOTURL>
      <SVGURL>http://api3.fonts.com/FontSampler.ashx?fctypeId=11&origId=c77feedc-cd2d-4649-af76-3e1eb6d00b98&fcId=8945edde-9ce4-48a2-b477-93832a466bc9&fontformat=W26&v=2</SVGURL>
      <WOFFURL>http://api3.fonts.com/FontSampler.ashx?fctypeId=3&origId=1c41d2a1-c639-4824-8f53-3916f4e9a447&fcId=8945edde-9ce4-48a2-b477-93832a466bc9&fontformat=W26&v=2</WOFFURL>
      <EnableSubsetting>false</EnableSubsetting>
      <Designer>Pini Hemo</Designer>
      <DesignerIDs>525430</DesignerIDs>
      <Classification></Classification>
      <ClassificationIDs></ClassificationIDs>
      <OtherLanguageSupportOptions />
    </Font>
  </FontFamily>
  <TotalGroupRecords>3032</TotalGroupRecords>
  <TotalFontRecords>14366</TotalFontRecords>
  <PageStart>0</PageStart>
  <PageLimit>10</PageLimit>
</AllFonts>       

json Response (without family grouping i.e. wfsFamilyGrouping set false)

{
   "AllFonts":{
      "Font":[
         {
            "Classification":"Sans Serif,Technical",
            "Designer":"Linotype Design Studio",
            "EnableSubsetting":"false",
            "EOTURL":"http:\/\/api3.fonts.com\/FontSampler.ashx?fctypeId=2&origId=f81026f1-d541-41a9-affc-ca2a013871f4&fcId=417fbaeb-4c38-4327-a855-6b4865fcd555&fontformat=W01&v=4",
            "FontCSSName":"Helvetica W01 Blk",
            "FontFoundryName":"Linotype",
            "FontID":"709857",
            "FontLanguage":"Latin 1",
            "FontName":"Helveticar Black",
            "FontPreviewTextLong":"Quick Brown Fox Jumped Over The Lazy Dog",
            "FontSize":"36232",
            "FontTier":"0",
            "SVGURL":"http:\/\/api3.fonts.com\/FontSampler.ashx?fctypeId=11&origId=422289e3-fe15-4e5a-b159-45888740f8dc&fcId=417fbaeb-4c38-4327-a855-6b4865fcd555&fontformat=W01&v=4",
            "TTFURL":"http:\/\/api3.fonts.com\/FontSampler.ashx?fctypeId=1&origId=417fbaeb-4c38-4327-a855-6b4865fcd555&fcId=417fbaeb-4c38-4327-a855-6b4865fcd555&fontformat=W01&v=4",
            "WOFFURL":"http:\/\/api3.fonts.com\/FontSampler.ashx?fctypeId=3&origId=712aac8d-557b-4a5d-bb6a-40ac69765042&fcId=417fbaeb-4c38-4327-a855-6b4865fcd555&fontformat=W01&v=4"
         },
         {
            "Classification":"Sans Serif,Technical",
            "Designer":"Linotype Design Studio",
            "EnableSubsetting":"false",
            "EOTURL":"http:\/\/api3.fonts.com\/FontSampler.ashx?fctypeId=2&origId=3607e1fa-3c64-4517-8996-d732d0c14a05&fcId=1119736b-8e3a-4efc-a90c-c0d13e27081e&fontformat=W02&v=3",
            "FontCSSName":"Helvetica W02 Blk",
            "FontFoundryName":"Linotype",
            "FontID":"739479",
            "FontLanguage":"Latin Ext 1",
            "FontName":"Helveticar Black",
            "FontPreviewTextLong":"The quick brown fox jumps \/ Prílis zlutoucky",
            "FontSize":"56596",
            "FontTier":"0",
            "SVGURL":"http:\/\/api3.fonts.com\/FontSampler.ashx?fctypeId=11&origId=b5dc5e4c-b76e-490f-9699-87852910524d&fcId=1119736b-8e3a-4efc-a90c-c0d13e27081e&fontformat=W02&v=3",
            "TTFURL":"http:\/\/api3.fonts.com\/FontSampler.ashx?fctypeId=1&origId=1119736b-8e3a-4efc-a90c-c0d13e27081e&fcId=1119736b-8e3a-4efc-a90c-c0d13e27081e&fontformat=W02&v=3",
            "WOFFURL":"http:\/\/api3.fonts.com\/FontSampler.ashx?fctypeId=3&origId=aa71f04c-c694-4c1b-b841-c7ca7fff868e&fcId=1119736b-8e3a-4efc-a90c-c0d13e27081e&fontformat=W02&v=3"
         },
         {
            "Classification":"Sans Serif,Technical",
            "Designer":"Linotype Design Studio",
            "EnableSubsetting":"false",
            "EOTURL":"http:\/\/api3.fonts.com\/FontSampler.ashx?fctypeId=2&origId=71382082-494e-41bb-abc8-e8a0fcb2374a&fcId=7dc7721f-3e3f-4be1-9eab-74cced36e438&fontformat=W01&v=4",
            "FontCSSName":"Helvetica W01 Blk Obl",
            "FontFoundryName":"Linotype",
            "FontID":"709866",
            "FontLanguage":"Latin 1",
            "FontName":"Helveticar Black Oblique",
            "FontPreviewTextLong":"Quick Brown Fox Jumped Over The Lazy Dog",
            "FontSize":"36500",
            "FontTier":"0",
            "SVGURL":"http:\/\/api3.fonts.com\/FontSampler.ashx?fctypeId=11&origId=d5ab6fd7-be42-4e89-91a2-fd53fe2a7155&fcId=7dc7721f-3e3f-4be1-9eab-74cced36e438&fontformat=W01&v=4",
            "TTFURL":"http:\/\/api3.fonts.com\/FontSampler.ashx?fctypeId=1&origId=7dc7721f-3e3f-4be1-9eab-74cced36e438&fcId=7dc7721f-3e3f-4be1-9eab-74cced36e438&fontformat=W01&v=4",
            "WOFFURL":"http:\/\/api3.fonts.com\/FontSampler.ashx?fctypeId=3&origId=e80cc55d-63d4-47e3-90e1-8b9a4e5e97b8&fcId=7dc7721f-3e3f-4be1-9eab-74cced36e438&fontformat=W01&v=4"
         }
      ],
      "Message":"Success",
      "PageLimit":"3",
      "PageStart":"0",
      "TotalRecords":"305"
   }
}        

json Response (with family grouping i.e. wfsFamilyGrouping set true)

{ 
    "AllFonts": 
    { 
        "FontFamily": [ 
        {
            "DisplayFontID": "749150", 
            "FontFamilyID": "749147", 
            "FontFamilyName": "Almanac™",
            "Font": 
            {
                "Classification": "Symbol", 
                "ClassificationIDs": "51434", 
                "Designer": "Monotype Design Studio", 
                "DesignerIDs": "525204", 
                "DesignFoundryID": "185289", 
                "EnableSubsetting": "false", 
                "EOTURL": "http:\/\/api3.fonts.com\/FontSampler.ashx?fctypeId=2&origId=cb438e81-93fd-45d7-9b2b-ea92bc52a8f8&fcId=075f9f1a-2b8b-4524-a5df-ba9ba2d486a5&fontformat=W95&v=4", 
                "FontCSSName": "Almanac MT W95", 
                "FontFoundryName": "Monotype Imaging", 
                "FontID": "749150", 
                "FontLanguage": "PI - and Symbol font", 
                "FontName": "Almanac™ Regular", 
                "FontPreviewTextLong": "ABCDEFGHIKLMNOPQRSTUVWXYZ.abcdefghikl", 
                "FontSize": "29364-74554", 
                "FontTier": "0", 
                "OtherLanguageSupportOptions": null, 
                "PsNames": "AlmanacMTW95", 
                "SourceFoundryID": "523654", 
                "SVGURL": "http:\/\/api3.fonts.com\/FontSampler.ashx?fctypeId=11&origId=8a65271f-9042-468c-9d71-3f75bab97a77&fcId=075f9f1a-2b8b-4524-a5df-ba9ba2d486a5&fontformat=W95&v=4", 
                "TTFURL": "http:\/\/api3.fonts.com\/FontSampler.ashx?fctypeId=1&origId=075f9f1a-2b8b-4524-a5df-ba9ba2d486a5&fcId=075f9f1a-2b8b-4524-a5df-ba9ba2d486a5&fontformat=W95&v=4", 
                "WOFFURL": "http:\/\/api3.fonts.com\/FontSampler.ashx?fctypeId=3&origId=c85fa77b-f394-4806-aeae-24dee7380c1e&fcId=075f9f1a-2b8b-4524-a5df-ba9ba2d486a5&fontformat=W95&v=4" 
            }                 
        }, 
        {
            "DisplayFontID": "691799",  
            "Font": [ 
            {
                "Classification": "Sans Serif", 
                "ClassificationIDs": "51431", 
                "Designer": "Morris Fuller Benton", 
                "DesignerIDs": "524401", 
                "DesignFoundryID": "185288", 
                "EnableSubsetting": "false", 
                "EOTURL": "http:\/\/api3.fonts.com\/FontSampler.ashx?fctypeId=2&origId=08f81dde-07fe-4a13-b96b-de70ab913f0c&fcId=490fb46a-54c6-486b-9dc8-4b6862162feb&fontformat=W01&v=5", 
                "FontCSSName": "AlternateGothicW01-No1", 
                "FontFoundryName": "Linotype", 
                "FontID": "691796", 
                "FontLanguage": "Latin 1", 
                "FontName": "Alternate Gothic No 1", 
                "FontPreviewTextLong": "Quick Brown Fox Jumped Over The Lazy Dog", 
                "FontSize": "21920-124526", 
                "FontTier": "0", 
                "PsNames": "AlternateGothicW01-No1", 
                "SourceFoundryID": "185288", 
                "SVGURL": "http:\/\/api3.fonts.com\/FontSampler.ashx?fctypeId=11&origId=27811e8b-0bca-46f2-8f73-bf56a19a5785&fcId=490fb46a-54c6-486b-9dc8-4b6862162feb&fontformat=W01&v=5", 
                "TTFURL": "http:\/\/api3.fonts.com\/FontSampler.ashx?fctypeId=1&origId=490fb46a-54c6-486b-9dc8-4b6862162feb&fcId=490fb46a-54c6-486b-9dc8-4b6862162feb&fontformat=W01&v=5", 
                "WOFFURL": "http:\/\/api3.fonts.com\/FontSampler.ashx?fctypeId=3&origId=f2ce3af9-0227-443e-ba37-0293d811f89b&fcId=490fb46a-54c6-486b-9dc8-4b6862162feb&fontformat=W01&v=5", 
                "OtherLanguageSupportOptions": 
                {
                    "Font": 
                    {
                        "Classification": "Sans Serif", 
                        "ClassificationIDs": "51431", 
                        "Designer": "Morris Fuller Benton", 
                        "DesignerIDs": "524401", 
                        "DesignFoundryID": "185288", 
                        "EnableSubsetting": "false", 
                        "EOTURL": "http:\/\/api3.fonts.com\/FontSampler.ashx?fctypeId=2&origId=55f9eb5f-e951-4950-ae37-a189506cb4c6&fcId=2e0efbc7-c675-4a48-a8a7-4b9af1e2a2cb&fontformat=W02&v=4", 
                        "FontCSSName": "AlternateGothicW02-No1", 
                        "FontFoundryName": "Linotype", 
                        "FontID": "693803", 
                        "FontLanguage": "Latin Ext 1", 
                        "FontName": "Alternate Gothic No 1", 
                        "FontPreviewTextLong": "The quick brown fox jumps \/ Příliš žluťoučký", 
                        "FontSize": "30728-216526", 
                        "FontTier": "0", 
                        "PsNames": "AlternateGothicW02-No1", 
                        "SourceFoundryID": "185288", 
                        "SVGURL": "http:\/\/api3.fonts.com\/FontSampler.ashx?fctypeId=11&origId=1df8467f-53c7-4c32-b004-640e52452762&fcId=2e0efbc7-c675-4a48-a8a7-4b9af1e2a2cb&fontformat=W02&v=4", 
                        "TTFURL": "http:\/\/api3.fonts.com\/FontSampler.ashx?fctypeId=1&origId=2e0efbc7-c675-4a48-a8a7-4b9af1e2a2cb&fcId=2e0efbc7-c675-4a48-a8a7-4b9af1e2a2cb&fontformat=W02&v=4", 
                        "WOFFURL": "http:\/\/api3.fonts.com\/FontSampler.ashx?fctypeId=3&origId=a1407601-eb60-4c9c-9210-910e6da5be39&fcId=2e0efbc7-c675-4a48-a8a7-4b9af1e2a2cb&fontformat=W02&v=4" 
                    } 
                }
            } 
        ], 
        "Message": "Success", 
        "PageLimit": "5", 
        "PageStart": "10", 
        "TotalFontRecords": "3060", 
        "TotalGroupRecords": "683" 
    }
}  

@font-face exmaple

Make sure after "EOTURL" their is a "#" symbol. Place this code in your CSS file.


      @font-face
      {
        font-family: "[font name]";
        src: url("[your EOTURL url]#") format("eot");
      }
      @font-face
      {
        font-family: "[font name]";
        src: url("[your EOTURL url]#");
        src: url("[your WOFFURL url]") format("woff"),
             url("[your TTFURL url]") format("truetype"),
             url("[your SVGURL url]") format("svg");
      }